Cosmos/source/Cosmos.System_Plugs/System/ByteImpl.cs

14 lines
297 B
C#

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