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
var _oc = new ObservableCollection(_listObjects);