Use break with a foreach. : Break « Statement « C# / CSharp Tutorial






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); 
  } 
}
Value is: 0
Value is: 1
Value is: 2
Value is: 3
Value is: 4
Summation of first 5 elements: 10








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.