1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Fixed tuple ToString

This commit is contained in:
Brian Fiete 2020-06-25 05:52:42 -07:00
parent e7afee6770
commit b424ce6818

View file

@ -99,6 +99,14 @@ namespace System
strBuffer.Append("@");
((int)Internal.UnsafeCastToPtr(this)).ToString(strBuffer, "X", null);
}
private static void ToString(Object obj, String strBuffer)
{
if (obj == null)
strBuffer.Append("null");
else
obj.ToString(strBuffer);
}
[SkipCall, NoShow]
protected virtual void GCMarkMembers()