Sdílet prostřednictvím


Compilerfehler CS1554

Aktualisiert: November 2007

Fehlermeldung

Ungültige Deklaration. Verwenden Sie stattdessen "<Typ> operator op (...".
Declaration is not valid; use '<type> operator op (...' instead

Der Rückgabetyp für einen benutzerdefinierten Operator muss vor dem Keyword-Operator stehen.

Im folgenden Beispiel wird CS1554 generiert:

// CS1554.cs
class MyClass
{
   public static operator ++ MyClass (MyClass f)    // CS1554
   // try the following line instead
   // public static MyClass operator ++ (MyClass f)
   {
      return new MyClass ();
   }

   public static void Main()
   {
   }
}