mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
- 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)
27 lines
621 B
C#
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()");
|
|
}
|
|
|
|
|
|
}
|
|
}
|