I have a C# collection class and I want it to be notified when one of it's collection items changes. This is so I can then update all of the items in that collection. What would be the best way of doing that?
I'm using an ObservableCollection because I'm binding the collection to a WPF ListBox.
This is my collection class:
public class Shows : ObservableCollection<ShowDetails>
{
...
}
and each item class is:
public class Show : INotifyPropertyChanged
{
...
}