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

16 lines
318 B
C#

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