GroupBy partitions a list of numbers by their remainder when divided by 5. : GroupBy « LINQ « C# / C Sharp






GroupBy partitions a list of numbers by their remainder when divided by 5.

 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

public class MainClass {
    public static void Main() {

        int[] numbers = { 5, 4, 1, 3, 9 };

        var numberGroups =
            from n in numbers
            group n by n % 5 into g
            select new { Remainder = g.Key, Numbers = g };

        foreach (var g in numberGroups) {
            Console.WriteLine("Numbers with a remainder of {0} when divided by 5:", g.Remainder);
            foreach (var n in g.Numbers) {
                Console.WriteLine(n);
            }
        }
    }
}

 








Related examples in the same category

1.Use Group By
2.uses group by to partition a list of products by category.
3.uses group by to partition a list of each customer's orders, first by year, and then by month.
4.uses GroupBy to partition trimmed elements of an array using a custom comparer