Microsoft should have implemented something snappy for INotifyPropertyChangedINotifyPropertyChanged, like in the automatic properties, just specify {get;set;notify;}{get; set; notify;}
I think it makes a lot of sense to do it. Or are there any complications to do it?
Can we ourselves implement something like 'notify' in our properties. Is there a graceful solution for implementing INotifyPropertyChangedINotifyPropertyChanged in your class or the only way to do it is by raising the PropertyChangedPropertyChanged event in each property.
If not can we write something to autogenerateauto-generate the peicepiece of code to raise PropertyChangedPropertyChanged event?