mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-24 18:48:01 +02:00
Tuple reflected name fix
This commit is contained in:
parent
4af432955e
commit
04e67007dd
2 changed files with 13 additions and 1 deletions
|
@ -1047,7 +1047,13 @@ namespace System.Reflection
|
|||
{
|
||||
if (fieldIdx > 0)
|
||||
strBuffer.Append(", ");
|
||||
GetType(mFieldDataPtr[fieldIdx].[Friend]mFieldTypeId).GetFullName(strBuffer);
|
||||
var fieldData = mFieldDataPtr[fieldIdx];
|
||||
GetType(fieldData.[Friend]mFieldTypeId).GetFullName(strBuffer);
|
||||
if (!fieldData.mName[0].IsNumber)
|
||||
{
|
||||
strBuffer.Append(' ');
|
||||
strBuffer.Append(fieldData.mName);
|
||||
}
|
||||
}
|
||||
}
|
||||
else if ((mTypeFlags.HasFlag(.Splattable)) && (mFieldDataPtr != null))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue