How to

clear event subscriptions

Published: 30. November 2011 | Updated: 30. November 2011
License: Microsoft Public License (MS-PL)
Categories: Framework » Events
Tags: C# Events
Was this snippet helpful for you? YESYES / NONO

Event

public event EventHandler MyEvent;

Clear subscriptions

private void ClearSubscriptions()
{
    MyEvent = null;
}
Send us feedback about this snippet »



Related Snippets: