C# get last index in array code example
Example 1: get last element of array c#
string[] str = new string[] {"Java","HTML","jQuery"};
Console.WriteLine("Last element: "+str[str.Length - 1])
Example 2: last index for array c#
string[] items = GetAllItems();
string lastItem = items[items.Length - 1];
int arrayLength = array.Length;