select new : select new « LINQ « C# / C Sharp






select new

 
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 q = from m in typeof(int).GetMethods()
                    orderby m.Name
                    group m by m.Name into gb
                    select new {Name = gb.Key};
   }
}

 








Related examples in the same category

1.Query a List or objects and create new objects
2.partitions an array of words into groups according to the first letter of each word.
3.Constructor new object with select statement