Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6855495
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T01:45:57+00:00 2026-05-27T01:45:57+00:00

Is there a way with the pre-existing Linq functions to create arbitrarily sized groups

  • 0

Is there a way with the pre-existing Linq functions to create arbitrarily sized groups from a list of item?

For instance:

[1,2,3,4,5,6,7]

When doing something like list.Group(3) would produce an IEnumberable of IEnumerables that look like the sequence below.

[[1,2,3],[4,5,6],[7]]
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T01:45:57+00:00Added an answer on May 27, 2026 at 1:45 am

    We’ve got this in MoreLINQ as Batch.

    var batch = source.Batch(3);
    

    As you can see from the code, it’s not really trivial to implement efficiently with the “standard” LINQ operators, but it’s clearly doable. Note that it involves buffering the input, as the resulting sequences need to be independent.

    If you do want to do it with just the standard operators, a less efficient implementation would be:

    // Assume "size" is the batch size
    var query = source.Select((value, index) => new { value, index })
                      .GroupBy(pair => pair.index / size, pair => pair.value);
    

    EDIT: Just to show why this is safer than John Fisher’s answer, here’s a short but complete program to show the difference:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    
    public class Program
    {
        public static void Main(String[] args)
        {
            int[] source = { 1, 2, 3, 4, 5, 6, 7 };
    
            var skeet = SkeetAnswer(source, 3);
            var fisher = FisherAnswer(source, 3);
    
            Console.WriteLine("Size of the first element of Skeet's solution:");
            Console.WriteLine(skeet.First().Count());
            Console.WriteLine(skeet.First().Count());
            Console.WriteLine(skeet.First().Count());
    
            Console.WriteLine("Size of the first element of Fisher's solution:");
            Console.WriteLine(fisher.First().Count());
            Console.WriteLine(fisher.First().Count());
            Console.WriteLine(fisher.First().Count());
        }
    
        static IEnumerable<IEnumerable<int>> SkeetAnswer(IEnumerable<int> source,
                                                         int size)
        {
            return source.Select((value, index) => new { value, index })
                         .GroupBy(pair => pair.index / size, pair => pair.value);
        }
    
        static IEnumerable<IEnumerable<int>> FisherAnswer(IEnumerable<int> source,
                                                          int size)
        {
            int index = 0;
            return source.GroupBy(x => (index++ / size));
        }
    }
    

    Results:

    Size of the first element of Skeet's solution:
    3
    3
    3
    Size of the first element of Fisher's solution:
    3
    2
    1
    

    While you could call ToList() at the end, at that point you’ve lost the efficiency gains of the approach – basically John’s approach avoids creating an instance of an anonymous type for each member. This could be mitigated by using a value type equivalent of Tuple<,>, so that no more objects would be created, just pairs of values wrapped in another value. There’s still be the slight increase in time required to do the projection then grouping.

    This is a good demonstration of why having side-effects in your LINQ queries (in this case the modification to the captured variable index) is a bad idea.

    Another alternative would be to write an implementation of GroupBy which provides the index of each element for the key projection. That’s what’s so nice about LINQ – there are so many options!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any way to easily create a workspace, based on a pre-existing template
Is there a quick way to submit (pre-defined) POST data from a hyperlink in
I need to access data from pre-existing tables. I've started working my way through
Is there a way to 'pre-build' a snippet of HTML before adding it to
Is there a way to pre allocate my SQLite database to a certain size?
Is there any way to pre compile stored procedures in SQL Server? My requirement
Is there a way to get the C++ pre-processor to expand a #define'ed value
is there way thats i can preselect an item when the page loads or
is there way how to get name ov event from Lambda expression like with
I started switching some pre-existing nHibernate code in a Sharepoint-based ASP.NET project from eager

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.