Lets say we have a delegate
public delegate void MyEventHandler(string x);
and an event handler
public event MyEventHandler
Simply set the event to null:
null
this.Something = null;
It will unregister all event handlers.