Lezen in het Engels

Delen via


Compilerfout CS1554

Verklaring is ongeldig; gebruik '<type> operator op (...' in plaats daarvan

Het retourtype van een overbelaste operator moet vóór het operator trefwoord worden weergegeven.

In het volgende voorbeeld wordt CS1554 gegenereerd:

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