get array last element in vb.net 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: get last element in a list vb.net
if(integerList.Count>0)
{
var item = integerList[integerList.Count - 1];
}