2015-11-09 176 views

回答

1

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

IReadOnlyList<string> or IReadOnlyList<int> or IReadOnlyList<MyClass> 
相关问题