CS Obtenha o último item da lista

using System.Linq;

var lastItem = integerList.Last();
Ugliest Unicorn