LINQ Partition List into Lists of 8 members [duplicate]
问题 This question already has answers here : Split List into Sublists with LINQ (29 answers) Closed 6 years ago . How would one take a List (using LINQ) and break it into a List of Lists partitioning the original list on every 8th entry? I imagine something like this would involve Skip and/or Take, but I'm still pretty new to LINQ. Edit: Using C# / .Net 3.5 Edit2: This question is phrased differently than the other "duplicate" question. Although the problems are similar, the answers in this