如何将具有相同类型项目的列表列表合并到单个项目列表?
这个问题很令人困惑,但正如以下代码所述,它更加清晰:
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 = ???
不确定是否可以使用 C# LINQ 或 Lambda?
本质上,如何连接或“展平”列表列表?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 SelectMany 扩展方法
Use the SelectMany extension method
这是 C# 集成语法版本:
Here's the C# integrated syntax version:
你是这个意思吗?
结果:
9 9 9 1 2 3 4 5 6
Do you mean this?
Results in:
9 9 9 1 2 3 4 5 6
对于
List
等,请使用>>
这已发布在评论中,但在我看来,它值得单独回答。
For
List<List<List<x>>>
and so on, useThis has been posted in a comment, but it deserves a separate answer in my opinion.