c# list element is last code example
Example 1: c# check if element is last in list
foreach (var x in things)
{
//Do stuff
if (x == things.Last()) // Do Stuff only for the last item
}
Example 2: c# get the last item in a list
var lastItem = integerList.Last();