我可以通过这种方式在List<string>
数组中添加List<List<string>>
:
List<string> first = new List<string> { "one", "two", "three" };
List<string> second = new List<string> { "four", "five", "six" };
List<List<string>> list_array = new List<List<string>> { first, second };
现在我需要创建几个填充了数据库记录的列表,然后将此列表添加到List<List<string>>
数组中:
List<List<string>> array_list;
while (dr.Read())
{
string one = dr["Row1"].ToString();
string two = dr["Row2"].ToString();
List<string> temp_list = new List<string> { one, two };
//Here I need to add temp_list to array_list
}
答案 0 :(得分:7)
创建一个空的array_list:
List<List<string>> array_list = new List<List<string>>();
然后使用Add
方法添加项目:
array_list.Add(temp_list);
答案 1 :(得分:2)
这应该有效:
array_list.Add(temp_list);
答案 2 :(得分:2)
更改变量声明以初始化空List:
List<List<string>> array_list = new List<List<string>>();
然后,只需调用.Add();
List<string> temp_list = new List<string> { one, two };
//Here I need to add temp_list to array_list
array_list.Add(temp_list);
答案 3 :(得分:2)
除非我读错了,否则你应该能够做到:
array_list.add(temp_list);
答案 4 :(得分:2)
List<List<string>> array_list = new List<List<string>>();
while (dr.Read())
{
string one = dr["Row1"].ToString();
string two = dr["Row2"].ToString();
List<string> temp_list = new List<string> { one, two };
array_list.add(temp_list)
}
答案 5 :(得分:2)
List<List<string>> array_list = new List<List<string>>();
while (dr.Read())
{
string one = dr["Row1"].ToString();
string two = dr["Row2"].ToString();
List<string> temp_list = new List<string> { one, two };
array_list.Add(temp_list);
}
答案 6 :(得分:1)
你可以直接添加;
array_list.Add(temp_list);
答案 7 :(得分:0)
你必须记住制作新的temp_list,不要使用temp_list.clear(),就像我在我的项目中所做的那样= _ =。
块引用
List<List<string>> array_list = new List<List<string>>();
while (dr.Read())
{
string one = dr["Row1"].ToString();
string two = dr["Row2"].ToString();
List<string> temp_list = new List<string> { one, two };
array_list.Add(temp_list);
}
块引用