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
}