我有List<List<Person>>
我希望它将以前集合中的所有人复制到List<Person>
集合中。
我这样做了:
var People = new List<List<Person>>{ new List<Person>{...},... };
var people = new List<Person>();
People.ForEach(q => people.AddRange(q.People));
return people;
有没有更好的方法来做到这一点?