Using break to exit a do-while loop : Break « Statement « C# / CSharp Tutorial






using System; 
 
class MainClass {  
  public static void Main() {  
    int i; 
 
    i = -10;     
    do { 
      if(i > 0) 
         break; 
      Console.Write(i + " "); 
      i++; 
    } while(i <= 10); 
  
    Console.WriteLine("Done");  
  }  
}
-10 -9 -8 -7 -6 -5 -4 -3 -2 -1 0 Done








4.7.Break
4.7.1.Using break to exit a for loop
4.7.2.Find the smallest factor of a value
4.7.3.Using break with nested loops
4.7.4.Using break to exit a do-while loop
4.7.5.Use break with a foreach.