using System; using Cosmos.IL2CPU.Plugs; namespace Cosmos.System.Plugs.System { [Plug(Target = typeof(IntPtr))] public static class IntPtrImpl { // //[PlugMethod(Signature="System_String___System_IntPtr_ToString____")] public static string ToString(IntPtr aThis) { return ""; } //} public static int GetHashCode(ref IntPtr aThis) { return (int)aThis; } } }