Check out example codes for "how to cast list to observablecollection c#". It will help you in understanding the concepts better.
Code Example 1
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);
Learn ReactJs, React Native from akashmittal.com