mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
14 lines
No EOL
346 B
C#
14 lines
No EOL
346 B
C#
using Cosmos.Common;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.IL2CPU.IL.CustomImplementations.System
|
|
{
|
|
[Plug(Target = typeof(ushort))]
|
|
public static class UInt16Impl
|
|
{
|
|
public static string ToString(ref ushort aThis)
|
|
{
|
|
return StringHelper.GetNumberString(aThis, false);
|
|
}
|
|
}
|
|
} |