Číst v angličtině

Sdílet prostřednictvím


Chyba kompilátoru CS1594

Delegát má několik neplatných argumentů.

Typ argumentu předaného vyvolání delegáta nesouhlasí s typem parametru v deklaraci delegáta.

Následující ukázka vygeneruje CS1594:

C#
// 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);  
   }  
}