Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个列表列表,称之为列表持有者。我想计算 listholder 包含多少个列表。listholder.count() 似乎不起作用(没有定义)。
我是这样声明的:
List<List<T>> listholder = new List<List<T>>();
并尝试过
listholder.count()
listholder.Count()将返回该列表中的元素数,即它包含的列表数。
listholder.Count()