What is the difference between these 2 statements?
private static event EventHandler<MyEventArg> MyNewEvent;
private static EventHandler<MyEventArg> MyNewEvent;
They both seem to behave the same. I am using .net 3.5. Are there any other ways to define this so that they are functionally identical?