我需要将IList
投射到Collection
(System.Collections.ObjectModel
)
你是怎么做到的?
答案 0 :(得分:7)
Collection<MyClass> coll = new Collection<MyClass>(myIList);
答案 1 :(得分:4)
只需使用构造函数:
IList<T> myList = ...
System.Collections.ObjectModel.Collection<T> omc =
new System.Collections.ObjectModel.Collection<T>(myList);