Answers for "how to find the last array in a for loop c#"

PHP
3

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 
 	}
Posted by: Guest on September-02-2020
1

php foreach if last item

$numItems = count($arr);
$i = 0;
foreach($arr as $key=>$value) {
  if(++$i === $numItems) {
    echo "last index!";
  }
}
Posted by: Guest on May-19-2020
-2

@razor identify last foreach

int iteration=0;
foreach (var item in items)
  {
    iteration++;
    if (iteration < items.Count)
       {
        //do stuff  
       }              
   }
Posted by: Guest on May-27-2020

Code answers related to "how to find the last array in a for loop c#"

Browse Popular Code Answers by Language