Cosmos/source/Cosmos.IL2CPU/CustomImplementation/System/SByteImpl.cs
2014-11-26 01:13:58 +00:00

17 lines
401 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Cosmos.IL2CPU.Plugs;
namespace Cosmos.IL2CPU.CustomImplementation.System
{
[Plug(Target=typeof(sbyte))]
public static class SByteImpl
{
public static string ToString(ref sbyte aThis)
{
return unchecked((Int32)(aThis)).ToString();
}
}
}