Skip numbers equals 50 in CSharp

Description

The following code shows how to skip numbers equals 50.

Example


//from   w w w .  j a  v a 2 s .c  om
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> skipWhileNumber = integers.SkipWhile(num => num.CompareTo(50) != 0);
        Console.WriteLine("Skip while number equals 50");
        foreach (int num in skipWhileNumber)
        {
            Console.WriteLine(num.ToString());
        }

    }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    LINQ »




Operator
Select
Where
OrderBy
Group
Join
Let
LINQ