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:
parent
bc64ac4d78
commit
237f85b846
2 changed files with 37 additions and 7 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue