csharp for loop next iteration

Code Example - csharp for loop next iteration

                
                        for (int i = 0; i < 10; i++){
 if(condition == true){
 	continue; //Next for loop interation
 }
 // Otherwise
 doStuff();
}