RefactoringEssentials icon indicating copy to clipboard operation
RefactoringEssentials copied to clipboard

Feature request: Suggest nameof() for RaisePropertyChanged

Open sclarke81 opened this issue 8 years ago • 0 comments
trafficstars

When implementing the INotifyPropertyChanged interface you inevitable end up with calls to a RaisePropertyChanged function e.g.

RaisePropertyChanged("MyProperty");

It would be good if this was picked up with a suggestion to change it to:

RaisePropertyChanged(nameof(MyProperty));

sclarke81 avatar Jul 13 '17 11:07 sclarke81