
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
C# Program to Get the Last Element from an Array
Firstly, set an array −
string[] str = new string[]{ "Java", "HTML", "jQuery", "JavaScript", "Bootstrap" };
To get the value of the last element, get the length and display the following value −
str[str.Length - 1]
The above returns the last element.
Here is the complete code −
Example
using System; public class Demo { public static void Main() { string[] str = new string[] { "Java", "HTML", "jQuery", "JavaScript", "Bootstrap" }; Console.WriteLine("Array..."); foreach(string res in str) { Console.WriteLine(res); } Console.WriteLine("Last element: "+str[str.Length - 1]); } }
Output
Array... Java HTML jQuery JavaScript Bootstrap Last element: Bootstrap
Advertisements