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.

i have List<List<Person>> i want it to copy all people in the previous collection to List<Person> collection.

i did it like:

        var People = new List<List<Person>>{ new List<Person>{...},...  };
        var people = new List<Person>();
        People.ForEach(q => people.AddRange(q.People));
        return people;

is there any better way to do this?

share|improve this question
1  
Little suggestion.. If you check this code with fXCop it will give warning. You should not link one collection in another. Do create separate class to achieve what you want – WYSIWYG Apr 22 '12 at 15:33

2 Answers

up vote 8 down vote accepted
var allPersons = People.SelectMany(p => p);
share|improve this answer
thank you it worked fine – HB MAAM Apr 22 '12 at 10:07

You should use SelectMany extension method for that:

var people = People.SelectMany(p => p)
share|improve this answer

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.