I need to cast an IList to a Collection (System.Collections.ObjectModel)
IList
Collection
System.Collections.ObjectModel
How do you go about this?
Collection<MyClass> coll = new Collection<MyClass>(myIList);