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