Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Your question is confusing. Provide an example of some input and the output you would expect for it. – IRBMe Jul 27 '09 at 22:43

3 Answers

up vote 56 down vote accepted

Use the SelectMany extension method

list = listOfList.SelectMany(x => x).ToList();
share|improve this answer
11  
I wonder how many folks have written their own "Flatten" extension not realizing how SelectMany works? – James Schek Jul 29 '09 at 22:25

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

share|improve this answer
Or you could use list.AddRange() instead of Concat() to add the merged items to the existing list. – dahlbyk Jul 27 '09 at 22:56

Here's the C# integrated syntax version:

var items =
    from list in listOfList
    from item in list
    select item;
share|improve this answer
Little bit confusing, but nice. How this? var items = from item in (from list in listOflist select list) select item – David.Chu.ca Jul 28 '09 at 0:14
2  
The 'double from' is the same as SelectMany ... SelectMany is probably the most powerful of the LINQ methods (or query operators). To see why, Google "LINQ SelectMany Monad" and you'll discover more than you'll want to know about it. – Richard Hein Jul 28 '09 at 4:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.