Select from a Grouped value in CSharp
Description
The following code shows how to select from a Grouped value.
Example
//w w w .j a v a 2 s .c om
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 };
foreach(var v in q){
Console.WriteLine(v.Name);
}
}
}
The code above generates the following result.