c# list check if item is last code example
Example: 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
}
foreach (var x in things)
{
//Do stuff
if (x == things.Last()) // Do Stuff only for the last item
}