更新:2007 年 11 月
错误消息
无法将类型“type”转换为“type”必须提供转换例程以支持某些运算符重载。有关更多信息,请参见
下面的示例生成 CS0030:
复制代码 | |
---|---|
// CS0030.cs namespace x { public class iii { /* public static implicit operator iii(int aa) { return null; } public static implicit operator int(iii aa) { return 0; } */ public static iii operator ++(iii aa) { return (iii)0; // CS0030 // uncomment the conversion routines to resolve CS0030 } public static void Main() { } } } |