C# - 参数数组



有时,在声明方法时,你不确定作为参数传递的参数数量。C# 参数数组(或参数数组)这时可以派上用场。

以下示例对此进行了演示 -

using System;

namespace ArrayApplication {
   class ParamArray {
      public int AddElements(params int[] arr) {
         int sum = 0;
         
         foreach (int i in arr) {
            sum += i;
         }
         return sum;
      }
   }
   class TestClass {
      static void Main(string[] args) {
         ParamArray app = new ParamArray();
         int sum = app.AddElements(512, 720, 250, 567, 889);
         
         Console.WriteLine("The sum is: {0}", sum);
         Console.ReadKey();
      }
   }
}

当上面代码编译并执行时,会产生以下结果 -

The sum is: 2938
csharp_arrays.htm
广告