Cosmos/source/Unused/Old System Plugs/SByteImpl.cs
2016-12-13 22:39:41 -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();
}
}
}