clear event subscriptions
Published: 30. November 2011 | Updated: 30. November 2011License: Microsoft Public License (MS-PL)
Categories: Framework » Events
Tags: C# Events
Event
public event EventHandler MyEvent;
Clear subscriptions
private void ClearSubscriptions() { MyEvent = null; }
| Send us feedback about this snippet » |





