-1

如何将列表添加到另一个列表,例如:

List<string> list = new List<string>();

我想将此列表添加到另一个列表中,例如:

List<List> list2 = new List<List>()
4

2 回答 2

5
var list1 = new List<string>();
var list2 = new List<string>();
var parentList = new List<List<string>> {list1, list2};
于 2013-07-23T07:09:11.530 回答
1

创建嵌套类,并在每个类中创建一个 List(Of xxSubClassxx) 类型的属性

一个VB的例子是:

class list1

 property list as new List(of xfirstlist)

 class xfirstlist

   property list2 as new list(of xSecondList)
   class xSecondList

   end class

 end class

end class
于 2013-07-23T07:12:37.013 回答