public IReadOnlyList POIs
{
get
{
throw new NotImplementedException ();
}
}
异常: C:\ Users \ Nouman Aslam \ Documents \ Projects \ POIApp \ POIApp \ POIJsonService.cs(10,10):错误CS0305:使用泛型类型'System.Collections.Generic.IReadOnlyList'需要1个类型参数(CS0305)(POIApp) )
答案 0 :(得分:1)
IReadOnlyList是通用的。您需要指定它使用的类型,例如
IReadOnlyList<string> or IReadOnlyList<int> or IReadOnlyList<MyClass>