use ElementAt : ElementAt : LINQ C# Source Code


Custom Search

C# Source Code » LINQ » ElementAt »

 

use ElementAt








    
 

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

public class MainClass{
   public static void Main(){
            int[] numbers = {1, 2, 3, 4, 5, 6, 7, 8, 9};
            var query = numbers.ElementAt(4);
            Console.Write(query);
   }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo LINQ
» ElementAt