Cosmos/source/Cosmos.System.Plugs/System/ByteImpl.cs
2017-01-29 17:24:43 -06:00

15 lines
316 B
C#

using System;
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);
}
}
}