共用方式為


編譯器錯誤 CS1611

更新:2007 年 11 月

錯誤訊息

不能將 params 參數宣告為 ref 或 out

關鍵字 refout 不能和 params 關鍵字一起使用。

下列範例會產生 CS1611:

// CS1611.cs
public class MyClass
{
   public static void Test(params ref int[] a)   // CS1611, remove ref
   {
   }

   public static void Main()
   {
      Test(1);
   }
}