Possible Duplicate:
How can I split an IEnumerable<String> into groups of IEnumerable<string>
I have a list that I would like to break into groups of 10.
If I have an object
List<Person> allPendingPersons
that is of length m.
Is there an elegant way in LINQ to break up allPendingPersons into one or more List objects that all have a up to 10 Persons?