mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-12 05:14:10 +02:00
Fixed tuple ToString
This commit is contained in:
parent
e7afee6770
commit
b424ce6818
1 changed files with 8 additions and 0 deletions
|
@ -99,6 +99,14 @@ namespace System
|
||||||
strBuffer.Append("@");
|
strBuffer.Append("@");
|
||||||
((int)Internal.UnsafeCastToPtr(this)).ToString(strBuffer, "X", null);
|
((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]
|
[SkipCall, NoShow]
|
||||||
protected virtual void GCMarkMembers()
|
protected virtual void GCMarkMembers()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue