mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
14 lines
302 B
C#
14 lines
302 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);
|
|
}
|
|
}
|
|
}
|