閱讀英文

共用方式為


編譯器錯誤 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);  
   }  
}