TakeWhile with two parameters : TakeWhile « LINQ « C# / C Sharp






TakeWhile with two parameters

 

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

        string[] presidents = {"ant", "Hard", "Harrison", "Hayes", "Hoover", "Jack"};

        IEnumerable<string> items = presidents
         .TakeWhile((s, i) => s.Length < 10 && i < 5);

        foreach (string item in items)
            Console.WriteLine(item);

    }
}

 








Related examples in the same category

1.Use TakeWhile with index
2.TakeWhile with condition
3.TakeWhile with expresion