SyntaxFix
Write A Post
Hire A Developer
Questions
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.