Получить последний элемент в списке VB.NET

if(integerList.Count>0)
{
   var item = integerList[integerList.Count - 1];
}
Cooperative Copperhead