使用英语阅读

通过


编译器错误 CS1553

声明无效;请改用“修饰符运算符 <dest-type> (...”

转换运算符的返回类型必须紧跟参数列表,并且 修饰符implicitexplicit

下面的示例生成 CS1553:

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