Obtenga el último elemento en una lista vb.net

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