Cosmos/source/Cosmos.System2_Plugs/System/SByteImpl.cs
2018-12-27 21:14:56 +00:00

16 lines
399 B
C#

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