英語で読む

次の方法で共有


コンパイラ エラー CS1593

デリゲート 'del' に 'number' 個の引数を指定することはできません

デリゲート 呼び出しに渡される引数の数が、デリゲート宣言のパラメーターの数と一致していません。

次の例では CS1593 が生成されます。

// CS1593.cs  
using System;  
delegate string func(int i);   // declare delegate  
  
class a  
{  
   public static void Main()  
   {  
      func dt = new func(z);  
      x(dt);  
   }  
  
   public static string z(int j)  
   {  
      Console.WriteLine(j);  
      return j.ToString();  
   }  
  
   public static void x(func hello)  
   {  
      hello(8, 9);   // CS1593  
      // try the following line instead  
      // hello(8);  
   }  
}