how to cast list to observablecollection csharp
Code Example - how to cast list to observablecollection csharp
var stringList = new List<string>() {"1","2","3"};
//Use the contructor override to add the list to the new collection
var obStrings = new ObservableCollection<string>(stringList);