and events (INotifyPropertyChanged, specifically)
问题 I've run into a really strange problem I can't seem to reproduce with a small example. Sorry if this question is a little vague. I have a Person which contains an Address. Both inherit from BaseEntity which implements INotifyPropertyChanged. I want the Person class to NotifyPropertyChanged("Address") not only when an Address is set, but also when that Address itself changes, so my get/set in Person looks like this: class Person : BaseEntity { private Address address; public Address Address {