Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
msdn上有一个小的事件处理程序示例
与行:
myNewLog.EntryWritten += new EntryWrittenEventHandler(MyOnEntryWritten);
大概这会将触发事件添加到要处理的队列中。什么从队列中删除处理程序?我还需要考虑这个吗?
"-=" 运算符从发布者中删除订阅者。当事件的发布者比订阅者的寿命更长时,不取消订阅是一个问题。
更多信息在这里和这里。