mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
24 lines
810 B
C#
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;
|
|
}
|
|
}
|