Przeczytaj w języku angielskim

Udostępnij za pośrednictwem


Błąd kompilatora CS1594

Delegat "delegate" ma kilka nieprawidłowych argumentów

Typ argumentu przekazanego do wywołania delegata nie zgadza się z typem parametru w deklaracji delegata.

Poniższy przykład generuje 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);  
   }  
}