mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
20 lines
464 B
C#
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()");
|
|
}
|
|
}
|
|
}
|