I know that there are solutions out there for implementing INotifyPropertyChanged, but none of them are as simple as: reference this library, create/add this attribute, done (I’m thinking Aspect-Oriented Programming here). Does anyone know of a really simple way to do this? Bonus points if the solution is free.
Here are some relevant links (none of which provide a simple enough answer):
Try this
https://github.com/Fody/PropertyChanged
It will weave all properties of types that implement INotifyPropertyChanged and even handles dependencies.
Your Code
What gets compiled
Or you can use attributes for more fine grained control.