我试图发出调用我之前发出的动态方法的代码:
iLGenerator.Emit(OpCodes.Call, dynamicMethod.GetMethodInfo());
它有一个例外:" MethodInfo必须是运行时MethodInfo对象"
有没有办法将动态方法转换为运行时方法?
答案 0 :(得分:5)
据我所知,您已使用DynamicMethod
将CreateDelegate
编译成代理人。但是,如果您只是直接使用DynamicMethod
对象作为Emit的参数,它应该可以工作。演示:
using System.Reflection;
using System.Reflection.Emit;
public class Program
{
public static void Main(string[] args)
{
var dynMethod = new DynamicMethod("test1", typeof(void), Type.EmptyTypes);
var gen = dynMethod.GetILGenerator();
gen.EmitWriteLine("Test");
gen.Emit(OpCodes.Ret);
var dynMethod2 = new DynamicMethod("test2", typeof(void), Type.EmptyTypes);
gen = dynMethod2.GetILGenerator();
gen.Emit(OpCodes.Call, dynMethod);
gen.Emit(OpCodes.Ret);
var method2 = (Action)dynMethod2.CreateDelegate(typeof(Action));
method2();
}
}