C#MSIL调用方法并传递一个对象[]

时间:2018-08-12 10:46:02

标签: c# reflection cil reflection.emit gac-msil

我想使用反射发射依赖项将C#中的方法转换为MSIL代码。

我要转换的方法是转换方法:

public class AClass
{
    public string Transformation(string a, string b, string c)
    {
        return new AnotherClass().Method(new object[] { a, b, c });
    }
}

public class AnotherClass
{
    public string Method(params object[] objs)
    {
        return "AAA";
    }
}

因此,基本上创建一个类的实例,并使用一个新的object []调用方法函数,该对象将处理所有传递给它的参数。

当我看着IlSpy时,我有这个:

.method public hidebysig 
instance string Transformation (
    string a,
    string b,
    string c
) cil managed 
{
// Method begins at RVA 0x20d0
// Code size 34 (0x22)
.maxstack 5
.locals init (
    [0] string
)

IL_0000: nop
IL_0001: newobj instance void ConsoleApp1.AnotherClass::.ctor()
IL_0006: ldc.i4.3
IL_0007: newarr [mscorlib]System.Object
IL_000c: dup
IL_000d: ldc.i4.0
IL_000e: ldarg.1
IL_000f: stelem.ref
IL_0010: dup
IL_0011: ldc.i4.1
IL_0012: ldarg.2
IL_0013: stelem.ref
IL_0014: dup
IL_0015: ldc.i4.2
IL_0016: ldarg.3
IL_0017: stelem.ref
IL_0018: call instance string ConsoleApp1.AnotherClass::Method(object[])
IL_001d: stloc.0
IL_001e: br.s IL_0020

IL_0020: ldloc.0
IL_0021: ret
} // end of method AClass::Transformation

并尝试创建一个表示该功能的函数:

 public static void CallFucntionThroughIl(ILGenerator il, Type[] parameters, MethodInfo method)
    {
        il.Emit(OpCodes.Nop);

        il.Emit(OpCodes.Newobj, typeof(AnotherClass).GetConstructor(Type.EmptyTypes));

        il.Emit(OpCodes.Ldc_I4, parameters.Length);

        il.Emit(OpCodes.Newarr, typeof(object));

        for (int i = 0; i < parameters.Length; i++)
        {
            il.Emit(OpCodes.Dup);
            il.Emit(OpCodes.Ldc_I4, i);
            il.Emit(OpCodes.Ldarg, i + 1);
            il.Emit(OpCodes.Stelem_Ref);
        }

        il.EmitCall(OpCodes.Callvirt,
            typeof(AnotherClass).GetMethod("Method").MakeGenericMethod(method.ReturnType),
            new Type[] { typeof(object[]) });

        il.Emit(OpCodes.Stloc_0);

        var label = il.DefineLabel();

        il.Emit(OpCodes.Br_S, label);

        il.MarkLabel(label);
        il.Emit(OpCodes.Ldloc_0);

        il.Emit(OpCodes.Ret);
    }

但是有时候我不知道自己在做什么,调试时遇到的唯一错误是:         System.InvalidProgramException:“公共语言运行时检测到无效程序。”

目标只是复制“ Transformation”函数的作用,获取所有参数,并将其传递到一个object []中,然后在参数中调用带有该object []的方法,然后返回其他方法返回的内容。

注意:转换函数并不总是要接收3个字符串,也可以是其他对象。

1 个答案:

答案 0 :(得分:1)

长时间挖掘后:

在Nop之后丢失了一个DeclareLocal:

il.Emit(OpCodes.Nop);
il.DeclareLocal(typeof(object[]));

尝试分配给本地不存在的变量时可能崩溃。

il.Emit(OpCodes.Stloc_0);