HomeCSharpC# Error CS1593 – Delegate ‘{0}’ does not take {1} arguments

C# Error CS1593 – Delegate ‘{0}’ does not take {1} arguments

C# Error

CS1593 – Delegate ‘{0}’ does not take {1} arguments

Reason for the Error & Solution

Delegate ‘del’ does not take ‘number’ arguments

The number of arguments passed to a invocation does not agree with the number of parameters in the delegate declaration.

The following sample generates 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);  
   }  
}  

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...