我有一个List
“bigList”,其中包含一个List
我的自定义类。因此,如果我的“bigList”中有 20 个列表,我如何获得其中一个内部列表的计数?
List<List<myClass>> bigList = new List<List<myClass>>();
for (int i = 0; i < 20; i++)
{
List<myClass> newList = new List<myClass>();
for (int i = 0; i < 100; i++)
{
newList.Add(myClass);
}
bigList.Add(newList);
}
通过这个示例,我如何获取 bigList 中的列表计数?我没有List
像ArrayList
我做错的那样工作,因为我只是将列表存储在ArrayList
然后使用索引来计算列表的数量。