c# – 调用基类的事件处理程序的MSIL是什么?
作者:互联网
我有一个名为EventConsumer的类,它定义一个事件EventConsumed和一个OnEventConsumed方法,如下所示:
public event EventHandler EventConsumed;
public virtual void OnEventConsumed(object sender, EventArgs e)
{
if (EventConsumed != null)
EventConsumed(this, e);
}
我需要在OnEventConsumed运行时添加属性,所以我使用System.Reflection.Emit生成子类.我想要的是MSIL相当于此:
public override void OnEventConsumed(object sender, EventArgs e)
{
base.OnEventConsumed(sender, e);
}
到目前为止我所拥有的是:
...
MethodInfo baseMethod = typeof(EventConsumer).GetMethod("OnEventConsumed");
MethodBuilder methodBuilder = typeBuilder.DefineMethod("OnEventConsumed",
baseMethod.Attributes,
baseMethod.CallingConvention,
typeof(void),
new Type[] {typeof(object),
typeof(EventArgs)});
ILGenerator ilGenerator = methodBuilder.GetILGenerator();
// load the first two args onto the stack
ilGenerator.Emit(OpCodes.Ldarg_1);
ilGenerator.Emit(OpCodes.Ldarg_2);
// call the base method
ilGenerator.EmitCall(OpCodes.Callvirt, baseMethod, new Type[0] );
// return
ilGenerator.Emit(OpCodes.Ret);
...
我创建类型,创建该类型的实例,并调用其OnEventConsumed函数,我得到:
Common Language Runtime detected an invalid program.
……这不是很有帮助.我究竟做错了什么?调用基类的事件处理程序的MSIL是什么?
解决方法:
这是来自示例应用程序的IL:
.method public hidebysig virtual instance void OnEventConsumed(object sender, class [mscorlib]System.EventArgs e) cil managed
{
.maxstack 8
L_0000: nop
L_0001: ldarg.0
L_0002: ldarg.1
L_0003: ldarg.2
L_0004: call instance void SubclassSpike.BaseClass::OnEventConsumed(object, class [mscorlib]System.EventArgs)
L_0009: nop
L_000a: ret
}
所以我认为你没有加载实例,因为你没有做ldarg.0
标签:c,cil,reflection-emit 来源: https://codeday.me/bug/20190527/1161164.html