尝试调用方法时出错

时间:2012-04-28 16:42:08

标签: c# methods call reflection.emit system.reflection

我有这段代码:

var work = new DynamicMethod("work", null, Type.EmptyTypes);
            var il = work.GetILGenerator();
            il.Emit(OpCodes.Ldstr, "a");
            il.Emit(OpCodes.Call, typeof(Console).GetMethod("WriteLine", new Type[]{typeof(string)}));
            var d = (Action)work.CreateDelegate(typeof(Action));
            d();

我只是想通过System.Reflection.Emit创建新方法。但它让我想到了这个错误:

Common Language Runtime detected an invalid program.

有人知道我该如何修理它或者哪里出错?请帮忙。

1 个答案:

答案 0 :(得分:4)

我认为你错过了一个回复的电话:

il.Emit(OpCodes.Ldstr, "a");
il.Emit(OpCodes.Call, typeof(Console).GetMethod("WriteLine", new Type[]{typeof(string)}));
il.Emit(OpCodes.Ret);