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?