Hello, I was just wondering what the actual difference, advantage and disadvantages of creating a new event handler, vs assigning it directly to the event ?
_gMonitor.CollectionChanged += new NotifyCollectionChangedEventHandler(OnCollectionChanged);
vs
_gMonitor.CollectionChanged += OnCollectionChanged;
Thanks, Raul