Use break with a foreach. : Break : Statement C# Examples


C# Examples » Statement » Break »

 

Use break with a foreach.









    
using  System;  
  
class  MainClass  {  
    public  static  void  Main()  {  
        int  sum  =  0;  
        int[]  nums  =  new  int[10];  
  
        for(int  i  =  0;  i  <  10;  i++)    
            nums[i]  =  i;  
  
        foreach(int  x  in  nums)  {  
            Console.WriteLine("Value  is:  "  +  x);  
            sum  +=  x;  
            if(x  ==  4)  
                  break;  //  stop  the  loop  when  4  is  obtained  
        }  
        Console.WriteLine("Summation  of  first  5  elements:  "  +  sum);  
    }  
}
    
   
  
   



Output

Value is: 0
Value is: 1
Value is: 2
Value is: 3
Value is: 4
Summation of first 5 elements: 10


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Statement
» Break