C# Error CS0563 – One of the parameters of a binary operator must be the containing type

C# Error

CS0563 – One of the parameters of a binary operator must be the containing type

Reason for the Error & Solution

One of the parameters of a binary operator must be the containing type

The method declaration for an must follow certain guidelines.

Example

The following sample generates CS0563:

// CS0563.cs  
public class iii  
{  
    public static implicit operator int(iii x)  
    {  
        return 0;  
    }  
    public static implicit operator iii(int x)  
    {  
        return null;  
    }  
    public static int operator +(int aa, int bb)   // CS0563
    // Use the following line instead:  
    // public static int operator +(int aa, iii bb)
    {  
        return 0;  
    }  
    public static void Main()  
    {  
    }  
}  

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