Cosmos/source/Indy.IL2CPU/IL/CustomImplementations/System/IntPtrImpl.cs
mterwoord_cp 82a22d212d
2009-09-13 17:36:11 +00:00

16 lines
No EOL
428 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Indy.IL2CPU.Plugs;
namespace Indy.IL2CPU.IL.CustomImplementations.System {
[Plug(Target = typeof(IntPtr))]
public static class IntPtrImpl {
// //[PlugMethod(Signature="System_String___System_IntPtr_ToString____")]
public static string ToString(IntPtr aThis) {
return "<IntPtr>";
}
//}
}
}