当前位置:  开发笔记 > 编程语言 > 正文

什么是MSIL来调用基类的事件处理程序?

如何解决《什么是MSIL来调用基类的事件处理程序?》经验,为你挑选了1个好方法。

我有一个名为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是什么?



1> Cory Foy..:

这是来自示例应用程序的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

推荐阅读
携手相约幸福
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有