[Solved] regarding ObservableCollection in c#
ObservableCollection implements INotifyPropertyChanged. This interface exposes events that allow consumers of your collection to be notified when the contents of the collection change. This is mainly used when binding in WPF, for example let’s say we have an ObservableCollection<string>: ObservableCollection<string> MyStrings { get { // return a collection with some strings here } } and … Read more