get the last item in a list c# code example
Example 1: c# get the last item in a list
var lastItem = integerList.Last();
Example 2: get last element in a list vb.net
if(integerList.Count>0)
{
var item = integerList[integerList.Count - 1];
}
Example 3: f# get last element of list
Seq.last lst