Program to get the last element from an array using C#


Declare an array and add elements.

int[] val = { 5, 8, 15, 25, 40, 55, 80, 100 };

Now, use the Queryable Last() method to get the last element.

val.AsQueryable().Last();

Let us see the complete code.

Example

 Live Demo

using System;
using System.Collections.Generic;
using System.Linq;
class Demo {
   static void Main() {
      int[] val = { 5, 8, 15, 25, 40, 55, 80, 100 };
      int last_num = val.AsQueryable().Last();
      Console.WriteLine("Last element: "+last_num);
   }
}

Output

Last element: 100

Updated on: 22-Jun-2020

3K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements