1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-21 01:18:02 +02:00

Added 'A' address format specifier

This commit is contained in:
Brian Fiete 2020-06-05 07:23:46 -07:00
parent bc64ac4d78
commit 237f85b846
2 changed files with 37 additions and 7 deletions

View file

@ -18,7 +18,7 @@ namespace System
public override void ToString(String strBuffer)
{
strBuffer.AppendF("0x{0:P}", (uint)(void*)mVal);
strBuffer.AppendF("0x{0:A}", (uint)(void*)mVal);
}
}
@ -35,7 +35,7 @@ namespace System
{
strBuffer.Append("(");
typeof(T).GetFullName(strBuffer);
strBuffer.AppendF("*)0x{0:P}", (uint)(void*)mVal);
strBuffer.AppendF("*)0x{0:A}", (uint)(void*)mVal);
}
}
}