c#中foreach遍历数组入门例子

发布时间:2020-01-11编辑:脚本学堂
c#遍历数组的方法,在c#编程中用foreach语句遍历数组,学习下foreach语句的用法。

c#中用foreach语句遍历数组

c#中数组遍历代码
 

复制代码 代码示例:
using System;
public class jb51demo {
 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);
}