Cosmos/source/Cosmos.System2_Plugs/System/DecimalImpl.cs
José Pedro 5e51301d5c
Added tests for Convert.
Added back plugs for Decimal.
Plugged Int32.ToString(IFormatProvider).
2018-02-26 00:22:06 +00:00

20 lines
464 B
C#

using System;
using IL2CPU.API.Attribs;
namespace Cosmos.System_Plugs.System
{
[Plug(Target = typeof(decimal))]
public static class DecimalImpl
{
public static int GetHashCode(ref decimal aThis)
{
throw new NotImplementedException("Decimal.GetHashCode()");
}
public static int ToString(ref decimal aThis)
{
throw new NotImplementedException("Decimal.ToString()");
}
}
}