1. 程式人生 > >C#使用foreach語句遍歷數組的代碼

C#使用foreach語句遍歷數組的代碼

關於 sys system each console demo for 遍歷數組 內容

下面的內容內容是關於C#使用foreach語句遍歷數組的內容,希望對大家有所好處。

using System; 

public class w3demo { 
  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; 
    } 
    Console.WriteLine("Summation: " + sum); 
  } 
}

C#使用foreach語句遍歷數組的代碼