HomeCSharpC# Error CS0590 – User-defined operators cannot return void

C# Error CS0590 – User-defined operators cannot return void

C# Error

CS0590 – User-defined operators cannot return void

Reason for the Error & Solution

User-defined operators cannot return void

The purpose of a user-defined operator is to return an object.

The following sample generates CS0590:

// CS0590.cs  
namespace x  
{  
   public class a  
   {  
      public static void operator+(a A1, a A2)   // CS0590  
      {  
      }  
  
      // try the following user-defined operator  
      /*  
      public static a operator+(a A1, a A2)  
      {  
         return A2;  
      }  
      */  
  
      public static int Main()  
      {  
         return 1;  
      }  
   }  
}  

Leave a Reply

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...