c# for next iteration code example
Example: c# for loop next iteration
for (int i = 0; i < 10; i++){
if(condition == true){
continue; //Next for loop interation
}
// Otherwise
doStuff();
}
for (int i = 0; i < 10; i++){
if(condition == true){
continue; //Next for loop interation
}
// Otherwise
doStuff();
}