Use the foreach loop : Foreach « Language Basics « C# / C Sharp






Use the foreach loop

Use the foreach loop
/*
C#: The Complete Reference 
by Herbert Schildt 

Publisher: Osborne/McGraw-Hill (March 8, 2002)
ISBN: 0072134852
*/
// Use the foreach loop.
 
using System; 
 
public class ForeachDemo { 
  public static void Main() { 
    int sum = 0; 
    int[] nums = new int[10]; 
 
    // give nums some values 
    for(int i = 0; i < 10; i++)  
      nums[i] = i; 
 
    // use foreach to display and sum the values 
    foreach(int x in nums) { 
      Console.WriteLine("Value is: " + x); 
      sum += x; 
    } 
    Console.WriteLine("Summation: " + sum); 
  } 
}

           
       








Related examples in the same category

1.ArrayList foreach
2.Hashtable and foreachHashtable and foreach
3.Use break with a foreachUse break with a foreach
4.Use foreach on a two-dimensional arrayUse foreach on a two-dimensional array
5.Search an array using foreachSearch an array using foreach
6.a foreach loopa foreach loop
7.Sums the values in an array using a foreach loopSums the values in an array using a foreach loop
8.Queue enqueue and foreachQueue enqueue and foreach
9.Stack push and foreachStack push and foreach
10.Foreach for arraylistForeach for arraylist