Cosmos/source2/IL2CPU/Cosmos.IL2CPU/CustomImplementation/System/ArrayImplRefs.cs
2010-09-04 19:07:11 +00:00

24 lines
810 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
namespace Cosmos.IL2CPU.CustomImplementation.System {
public static class ArrayImplRefs {
static ArrayImplRefs() {
Type xType = typeof(ArrayImpl);
foreach (FieldInfo xField in typeof(ArrayImplRefs).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 ArrayImpl!");
}
xField.SetValue(null, xTempMethod);
}
}
}
//public static readonly MethodBase InitArrayWithReferenceTypesRef;
}
}