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
If you JUST want to create an ObservableCollection from a List, then all you need to do is
ObservableCollection
List
ObservableCollection obsCollection = new ObservableCollection(myList);