Take operator outputs the first x elements, discarding the rest : Take : LINQ C# Source Code


Custom Search

C# Source Code » LINQ » Take »

 

Take operator outputs the first x elements, discarding the rest








    
 

using System;
using System.Collections.Generic;
using System.Linq;
public class MainClass {
    public static void Main() {

        int[] numbers = { 10, 9, 8, 7, 6 };
        IEnumerable<int> firstThree = numbers.Take(3);     // { 10, 9, 8 }

    }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo LINQ
» Take