Cosmos/source/Cosmos.System.Plugs/System/UInt16Impl.cs
2016-01-17 02:11:41 -06:00

14 lines
308 B
C#

using Cosmos.Common;
using Cosmos.IL2CPU.Plugs;
namespace Cosmos.System.Plugs.System
{
[Plug(Target = typeof(ushort))]
public static class UInt16Impl
{
public static string ToString(ref ushort aThis)
{
return StringHelper.GetNumberString(aThis);
}
}
}