Take numbers equals 50 : TakeWhile « LINQ « C# / CSharp Tutorial






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

    class Program
    {
        static void Main(string[] args)
        {

            int[] integers = { 1, 9, 5, 3, 7, 2, 11, 23, 50, 41, 6, 8 };
            IEnumerable<int> takeWhileNumber = integers.TakeWhile(num => num.CompareTo(50) != 0);
            Console.WriteLine("Take while number equals 50");
            foreach (int num in takeWhileNumber)
            {
                Console.WriteLine(num.ToString());
            }
        }
    }








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