TakeWhile with condition : TakeWhile « LINQ « C# / CSharp Tutorial






using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

public class MainClass{
public static void Main() {

            int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 };
            
            var firstNumbersLessThan6 = numbers.TakeWhile(n => n < 6);
            
            Console.WriteLine("First numbers less than 6:");
            foreach (var n in firstNumbersLessThan6) {
                Console.WriteLine(n);
            }
        }
}








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