Cosmos/source/Cosmos.System.Plugs/System/Runtime/Compilerservices/runtimehelpersImpl.cs
2016-06-29 23:18:04 -05:00

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