本文介绍了删除匿名事件处理程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
可能重复:结果
的
是否有可能以去除附着作为匿名函数的事件处理程序?比方说,我有一个事件,我订阅它是这样的:
Is it possible to remove an event handler which was attached as anonymous function? Let's say I have an event, and I subscribe to it in this way:
TestClass classs = new TestClass ();
classs.myCustomEvent += (a,b) => { Console.Write(""); };
是否有可能以某种方式删除使用此事件处理 - =?
Is it possible somehow to remove this eventHandler using -= ??
推荐答案
这是可能的,但你必须首先存储在一个局部变量:
It is possible, but you need to store it in a local variable first:
MyDelegate handler = (a, b) => { Console.Write(""); };
class.myCustomEvent += handler;
class.myCustomEvent -= handler;
这篇关于删除匿名事件处理程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!