Obtenha o último elemento em uma lista vb.net

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