CS получить последний пункт из списка

using System.Linq;

var lastItem = integerList.Last();
Ugliest Unicorn