Cosmos/source/Cosmos.System.Plugs/System/UInt64Impl.cs
2016-09-07 14:49:22 -05:00

15 lines
314 B
C#

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