2015-11-09 174 views

回答

1

IReadOnlyList是一個泛型。您需要指定它正在使用的類型,如

IReadOnlyList<string> or IReadOnlyList<int> or IReadOnlyList<MyClass> 
相關問題