Compilerfehler CS0563

Einer der Parameter eines binären Operators muss der enthaltende Typ sein

Bei der Methodendeklaration für eine Operatorüberladung müssen bestimmte Richtlinien beachtet werden.

Beispiel

Im folgenden Beispiel wird CS0563 generiert:

// 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()
    {
    }
}