TakeWhile with two parameters : TakeWhile « LINQ « C# / CSharp Tutorial






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);

    }
}








22.72.TakeWhile
22.72.1.Use TakeWhile with index
22.72.2.TakeWhile with condition
22.72.3.TakeWhile with expresion
22.72.4.TakeWhile with two parameters
22.72.5.Take numbers equals 50
22.72.6.Partition with TakeWhile