Second SkipWhile Prototype : SkipWhile : LINQ C# Source Code


Custom Search

C# Source Code » LINQ » SkipWhile »

 

Second SkipWhile Prototype








    
 


using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
public class MainClass {
    public static void Main() {
        string[] presidents = {"ant", "arding", "arrison", "Hayes", "Hoover", "ackson"};
        IEnumerable<string> items = presidents.SkipWhile((s, i) => s.Length > 4 && i < 10);
        foreach (string item in items)
            Console.WriteLine(item);
    }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo LINQ
» SkipWhile