I am looking at NotifyPropertyChanged()
from INotifyPropertyChanged
and noticed that in the examples from Microsoft such as here:
http://msdn.microsoft.com/en-us/library/system.componentmodel.inotifypropertychanged.aspx
There is no capturing of the delegate reference first (as it says to do here for example: Use of null check in event handler)
I had a look in the auto-generated Reference.cs for my ServiceReferences and this check is done.
So my question is should I be doing this (in whatever form such as extension methods etc)? Are there any possible issues if I don't?