1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Type.ToString -> comptype(id)

This commit is contained in:
Brian Fiete 2025-01-17 11:02:54 -08:00
parent 81dd512cdb
commit 11b136f6d1

View file

@ -956,8 +956,9 @@ namespace System
#if !BF_REFLECT_MINIMAL
GetFullName(strBuffer);
#else
strBuffer.Append("Type#");
mTypeId.ToString(strBuffer);
strBuffer.Append("comptype(");
((int32)mTypeId).ToString(strBuffer);
strBuffer.Append(")");
#endif
}