问题很混乱,但如下面的代码所述,它更加清晰:
List<List<T>> listOfList;
// add three lists of List<T> to listOfList, for example
/* listOfList = new {
{ 1, 2, 3}, // list 1 of 1, 3, and 3
{ 4, 5, 6}, // list 2
{ 7, 8, 9} // list 3
};
*/
List<T> list = null;
// how to merger all the items in listOfList to list?
// { 1, 2, 3, 4, 5, 6, 7, 8, 9 } // one list
// list = ???
Run Code Online (Sandbox Code Playgroud)
不确定是否可以使用C#LINQ或Lambda?
基本上,我如何连接或" 展平 "列表列表?
Jar*_*Par 415
使用SelectMany扩展方法
list = listOfList.SelectMany(x => x).ToList();
Run Code Online (Sandbox Code Playgroud)
Joe*_*ung 13
这是C#集成语法版本:
var items =
from list in listOfList
from item in list
select item;
Run Code Online (Sandbox Code Playgroud)
IRB*_*BMe 12
你是说这个吗?
var listOfList = new List<List<int>>() {
new List<int>() { 1, 2 },
new List<int>() { 3, 4 },
new List<int>() { 5, 6 }
};
var list = new List<int> { 9, 9, 9 };
var result = list.Concat(listOfList.SelectMany(x => x));
foreach (var x in result) Console.WriteLine(x);
Run Code Online (Sandbox Code Playgroud)
结果是: 9 9 9 1 2 3 4 5 6
对于List<List<List<x>>>等等,使用
list.SelectMany(x => x.SelectMany(y => y)).ToList();
Run Code Online (Sandbox Code Playgroud)
这已发布在评论中,但在我看来确实值得单独回复。