Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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
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
Advertisements