First Select Prototype : Prototype : LINQ C# Source Code


Custom Search

C# Source Code » LINQ » Prototype »

 

First Select Prototype








    
 


using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
public class MainClass {
    public static void Main() {
        string[] presidents = {"A", "Ar", "Buc", "Bush", "Carte", "Clevel"};

        var nameObjs = presidents.Select(p => new { p, p.Length });

        foreach (var item in nameObjs)
            Console.WriteLine(item);
    }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo LINQ
» Prototype