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

14 lines
No EOL
340 B
C#

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