Cosmos/source/Cosmos.System.Plugs/System/SByteImpl.cs
2015-12-18 08:08:49 -06:00

13 lines
274 B
C#

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 ((int)(aThis)).ToString();
}
}
}