Pytanie jest mylące, ale jest o wiele bardziej jasne, jak opisano w następujących kodach:
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 = ???
Nie jesteś pewien, czy jest to możliwe przy użyciu C # LINQ lub Lambda?
Zasadniczo, jak mogę połączyć lub „ spłaszczyć ” listę list?
list.SelectMany(x => x.SelectMany(y => y)).ToList();
Oto zintegrowana wersja składni C #:
źródło
Masz na myśli to?
Prowadzi do:
9 9 9 1 2 3 4 5 6
źródło
Do
List<List<List<x>>>
i tak dalej, użytkowaniaZostało to opublikowane w komentarzu, ale moim zdaniem zasługuje na osobną odpowiedź.
źródło