I am in wpf, and have a generic list: List. Now I wish to cast it to a generic observable collections: ObservableCollection.
I understand I can iterate over the list and
ObservableCollection has Conttructor for IEnumerable ObservableCollection
IEnumerable
ObservableCollection observable = new ObservableCollection(yourListObject);