Cosmos/source/Cosmos.System2_Plugs/System/UInt64Impl.cs
2018-12-27 21:14:56 +00:00

16 lines
393 B
C#

using System;
using Cosmos.Common;
using IL2CPU.API.Attribs;
namespace Cosmos.System_Plugs.System
{
[Plug(Target = typeof(ulong))]
public class UInt64Impl
{
public static string ToString(ref ulong aThis) => StringHelper.GetNumberString(aThis);
public static string ToString(ref ulong aThis, string format, IFormatProvider provider) => aThis.ToString();
}
}