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

14 lines
299 B
C#

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