What is the actual difference, advantages and disadvantages, of creating a new event handler, vs assigning it directly to the event?
_gMonitor.CollectionChanged += new NotifyCollectionChangedEventHandler(OnCollectionChanged);
vs
_gMonitor.CollectionChanged += OnCollectionChanged;