csharp check if element is last in list

Code Example - csharp 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 
 	}
                    
                
 

@razor identify last foreach

                        
                                int iteration=0;
foreach (var item in items)
  {
    iteration++;
    if (iteration < items.Count)
       {
        //do stuff  
       }              
   }
                            
                        
 

Related code examples