Číst v angličtině

Sdílet prostřednictvím


Chyba kompilátoru CS1593

Delegát del nepřebírají argumenty number

Počet argumentů předaných vyvolání delegáta nesouhlasí s počtem parametrů v deklaraci delegáta.

Následující ukázka vygeneruje 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);  
   }  
}