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

14 lines
302 B
C#

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