避免在C#中重复事件订阅 [英] Avoid duplicate event subscriptions in C#

查看:130
本文介绍了避免在C#中重复事件订阅的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您如何建议避免重复事件订阅的最佳方法?如果这一行代码在两个地方执行,事件将会被运行两次。我试图避免第三方事件订阅两次。

How would you suggest the best way of avoiding duplicate event subscriptions? if this line of code executes in two places, the event will get ran twice. I'm trying to avoid 3rd party events from subscribing twice.

theOBject.TheEvent += RunMyCode;

在我的委托设置器中,我可以有效地运行这个...

In my delegate setter, I can effectively run this ...

theOBject.TheEvent -= RunMyCode;
theOBject.TheEvent += RunMyCode;

但这是最好的方法吗?

推荐答案

我认为,最有效的方法是将事件作为属性,并在其中添加并发锁定,如 示例

I think, the most efficient way, is to make your event a property and add concurrency locks to it as in this Example:

private EventHandler _theEvent;
private object _eventLock = new object();
public event EventHandler TheEvent
{
    add
    {
        lock (_eventLock) 
        { 
            _theEvent -= value; 
            _theEvent += value; 
        }
    }
    remove
    {
        lock (_eventLock) 
        { 
           _theEvent -= value; 
        }
    }
}

这篇关于避免在C#中重复事件订阅的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆