Cosmos/source/Archive/Old System Plugs/Runtime/Compilerservices/runtimehelpersImpl.cs

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()");
}
}
}