简体   繁体   English

如何将具有相同类型项目的列表列表合并到单个项目列表中?

[英]How to merge a list of lists with same type of items to a single list of items?

The question is confusing, but it is much more clear as described in the following codes: 问题很混乱,但如下面的代码所述,它更加清晰:

   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 = ???

Not sure if it possible by using C# LINQ or Lambda? 不确定是否可以使用C#LINQ或Lambda?

Essentially, how can I concatenate or " flatten " a list of lists? 基本上,我如何连接或“ 展平 ”列表列表?

使用SelectMany扩展方法

list = listOfList.SelectMany(x => x).ToList();

Do you mean this? 你是说这个吗?

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);

Results in: 9 9 9 1 2 3 4 5 6 结果: 9 9 9 1 2 3 4 5 6

Here's the C# integrated syntax version: 这是C#集成语法版本:

var items =
    from list in listOfList
    from item in list
    select item;

For List<List<List<x>>> and so on, use 对于List<List<List<x>>>等,请使用

list.SelectMany(x => x.SelectMany(y => y)).ToList();

This has been posted in a comment, but it does deserves a separate reply in my opinion. 这已在评论中发布,但在我看来,它确实值得单独回复。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM