TakeWhile with expresion : TakeWhile « LINQ « C# / C Sharp






TakeWhile with expresion

 

using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
public class MainClass {
    public static void Main() {
        string[] presidents = {"1234567890123", "Art", "Buch", "Bush", "Car", "land"};
        IEnumerable<string> items = presidents.TakeWhile(s => s.Length < 10);
        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 two parameters