As we all know, we can create an EventHandler and add methods to it N number of times. Like:
// Declare and EventHandler
public event EventHandler
What you are describing is a field-like event. It is the same as the longhand event declaration, except no body.
From inside the class, you can set the event to null. From outside the class you cannot do this. Events follow a subscribe and unsubscribe methodology. Within the class you reference the variable, outside the class you reference the event.
See this answer by Jon Skeet on events.