c sharp for loop skip code example
Example 1: c# skip following code in loop
int bats = 10;
for (int i = 0; i <= 10; i++)
{
if (i < 9)
{
continue;
}
// this will be skipped until i is no longer less than 9
Console.WriteLine(i);
}
// this prints 9 and 10
Example 2: c# for loop next iteration
for (int i = 0; i < 10; i++){
if(condition == true){
continue; //Next for loop interation
}
// Otherwise
doStuff();
}