mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
15 lines
319 B
C#
15 lines
319 B
C#
using Cosmos.Common;
|
|
using IL2CPU.API;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.System_Plugs.System
|
|
{
|
|
[Plug(Target = typeof(sbyte))]
|
|
public static class SByteImpl
|
|
{
|
|
public static string ToString(ref sbyte aThis)
|
|
{
|
|
return StringHelper.GetNumberString(aThis);
|
|
}
|
|
}
|
|
}
|