CS obtiene el último elemento de la lista

using System.Linq;

var lastItem = integerList.Last();
Ugliest Unicorn