Get last even element in an array in CSharp

Description

The following code shows how to get last even element in an array.

Example


  //  w  ww. j a va  2  s.c o  m
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Linq;

public class MainClass{
   public static void Main(){
       int[] numbers = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };

       Console.WriteLine("The last even element in the sequence");
       var query = numbers.Last(n => n % 2 == 0);
       Console.Write(query);

   }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    LINQ »




Operator
Select
Where
OrderBy
Group
Join
Let
LINQ