mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
17 lines
No EOL
423 B
C#
17 lines
No EOL
423 B
C#
using System;
|
|
using Cosmos.Common;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
|
|
namespace Cosmos.System.Plugs.System.Runtime.Compilerservices
|
|
{
|
|
|
|
[Plug(Target = typeof(global::System.Runtime.CompilerServices.RuntimeHelpers))]
|
|
public static class runtimehelpersImpl
|
|
{
|
|
public static int GetHashCode(object o)
|
|
{
|
|
throw new NotImplementedException("runtimehelpersImpl.GetHashCode()");
|
|
}
|
|
}
|
|
} |