CS Otrzymuj ostatni element z listy

using System.Linq;

var lastItem = integerList.Last();
Ugliest Unicorn