I am using a class that I cannot edit, it has a property (a boolean) of which it would be nice to be informed when it changes, I can\'t edit the properties get or set as I am im
You can try to inherit it and use it's child instead of it. Override the "set" of the property so it raises the event.
EDIT: ... only if property is virtual in the parent class ...