閱讀英文

共用方式為


編譯器錯誤 CS1594

委派 'delegate' 有一些無效的引數

傳遞至 委派 引動過程的引數類型和委派宣告中的參數類型不一致。

下列範例會產生 CS1594:

// CS1594.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");   // CS1594  
      // try the following line instead  
      // hello(8);  
   }  
}