Cosmos/source/Compiler/Indy.IL2CPU.X86/IL/x86/CustomImplementations/System/ObjectImplRefs.cs
mterwoord_cp acaa8e0a89
2009-10-17 13:45:47 +00:00

25 lines
1,007 B
C#

//using System;
//using System.Collections.Generic;
//using System.Linq;
//using System.Reflection;
//using System.Text;
//namespace Indy.IL2CPU.IL.X86.CustomImplementations.System {
// public static class ObjectImplRefs {
// public static readonly Assembly RuntimeAssemblyDef;
// static ObjectImplRefs() {
// Type xType = typeof(ObjectImpl);
// foreach (FieldInfo xField in typeof(ObjectImplRefs).GetFields()) {
// if (xField.Name.EndsWith("Ref")) {
// MethodBase xTempMethod = xType.GetMethod(xField.Name.Substring(0, xField.Name.Length - "Ref".Length));
// if (xTempMethod == null) {
// throw new Exception("Method '" + xField.Name.Substring(0, xField.Name.Length - "Ref".Length) + "' not found on RuntimeEngine!");
// }
// xField.SetValue(null, xTempMethod);
// }
// }
// }
// }
//}