how to check if element is the last in a list c# code example
Example: @razor identify last foreach
int iteration=0;
foreach (var item in items)
{
iteration++;
if (iteration < items.Count)
{
//do stuff
}
}