C# Error CS1535 – Overloaded unary operator ‘{0}’ takes one parameter

C# Error

CS1535 – Overloaded unary operator ‘{0}’ takes one parameter

Reason for the Error & Solution

Overloaded unary operator ‘operator’ takes one parameter

The definition of a unary must take one parameter.

Example

The following sample generates CS1535:

// CS1535.cs  
class MyClass  
{  
    // uncomment the method parameter to resolve CS1535  
    public static MyClass operator ++ (/*MyClass MC1*/)   // CS1535  
    {  
        return new MyClass();  
    }  
  
    public static int Main()  
    {  
        return 1;  
    }  
}  

Leave A Reply

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

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...