In my silver light application i have two classes: Container and Field.
Container contains a list of Fields. Now, whenever an Field(in the list) receives a message I want to notify Container object to perform some logic.
Field object should not contain any reference of Container. i need to achieve this using INotifyPropertyChanged.
Please suggest a simple solution using INotifyPropertyChanged.