Cosmos/source/Cosmos.System_Plugs/System/UInt64Impl.cs
2017-07-12 14:23:19 -04:00

15 lines
311 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);
}
}
}