Cosmos/source/Cosmos.System2_Plugs/System/DecimalImpl.cs
fanoI bd6d211f5d - Added tests for HashTable
- Changed plug in ArrayImpl taking 'this' as pointer with the ObjectPointerAccess attribute (this solves the foreach test in HashTable)
- Corrected Thread plug signature
- Corrected SpinWait plug signature
- Added plug for Decimal.Equal (strangely was not required before)
2018-04-30 21:40:53 +02:00

27 lines
621 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()");
}
public static bool Equals(ref decimal aThis, object value)
{
throw new NotImplementedException("Decimal.Equals()");
}
}
}