Lezen in het Engels

Delen via


Compilerfout CS1553

Verklaring is ongeldig; gebruik 'modifier operator <dest-type> (...' in plaats daarvan

Het retourtype voor een conversieoperator moet direct voorafgaan aan de parameterlijst en de wijzigingsfunctie is implicit of explicit.

In het volgende voorbeeld wordt CS1553 gegenereerd:

C#
// CS1553.cs  
class MyClass  
{  
   public static int implicit operator (MyClass f)   // CS1553  
   // try the following line instead  
   // public static implicit operator int (MyClass f)  
   {  
      return 6;  
   }  
  
   public static void Main()  
   {  
   }  
}