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
|
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
| ||||
feedback
|
|
Use the following extension method to break the input into subsets
| |||||
feedback
|
|
We have just such a method in MoreLINQ as the Batch method:
or
| |||||||||
feedback
|
|
You're better off using a library like MoreLinq, but if you really had to do this using "plain LINQ", you can use
Basically, we use the version of It's easy enough to turn this into a reusable method by factoring our the constant You could also write your own extension method using iterator blocks ( | |||||
feedback
|
|
Take won't be very efficient, because it doesn't remove the entries taken. why not use a simple loop:
| ||||
|
feedback
|
|
It's not at all what the original Linq designers had in mind, but check out this misuse of GroupBy:
I think it wins the "golf" prize for this question. The ToList is very important since you want to make sure the grouping has actually been performed before you try doing anything with the output. If you remove the ToList(), you will get some weird side effects. | ||||
feedback
|
| |||
|
feedback
|