Cosmos/source/Cosmos.System2_Plugs/System/SByteImpl.cs
José Pedro a58e3f2fa0 g3
2017-07-30 18:38:20 +01:00

14 lines
300 B
C#

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