更新:2007 年 11 月

错误消息

不要使用“System.ParamArrayAttribute”。而是使用“params”关键字。

C# 编译器不允许使用 System..::.ParamArrayAttribute,应使用 params

下面的示例生成 CS0674:

 复制代码
// CS0674.cs
using System;
public class MyClass 
{

   public static void UseParams([ParamArray] int[] list)   // CS0674
   // try the following line instead
   // public static void UseParams(params int[] list) 
   {
      for ( int i = 0 ; i < list.Length ; i++ )
         Console.WriteLine(list[i]);
      Console.WriteLine();
   }

   public static void Main() 
   {
      UseParams(1, 2, 3);
   }
}