Select from a Group : Group « LINQ « C# / CSharp Tutorial






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

public class MainClass {
    public static void Main() {
        var query = from m in typeof(int).GetMethods() select m.Name;
        
        var q = from m in typeof(int).GetMethods()
                group m by m.Name into gb
                select new { Name = gb.Key };
    }
}








22.46.Group
22.46.1.Select from a Group
22.46.2.Group words by length
22.46.3.Using group to group all employees by department
22.46.4.Group Query
22.46.5.Grouping by substring