Cosmos/source/Cosmos.IL2CPU/CustomImplementation/System/UInt32Impl.cs
charles.betros@hcss.com d46bf5dd09 File system work.
2015-11-16 09:15:38 -06:00

15 lines
No EOL
359 B
C#

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