________causes the loop to continue with the next iteration after skipping any statements in between in C#. 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();
}