mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
15 lines
314 B
C#
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);
|
|
}
|
|
}
|
|
}
|