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 −
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]); } }
Array... Java HTML jQuery JavaScript Bootstrap Last element: Bootstrap