更新:2007 年 11 月
错误消息
显式接口声明中的“member”不是接口成员试图显式声明不存在的
下面的示例生成 CS0539:
复制代码 | |
---|---|
// CS0539.cs namespace x { interface I { void m(); } public class clx : I { void I.x() // CS0539 { } public static int Main() { return 0; } } } |
更新:2007 年 11 月
试图显式声明不存在的
下面的示例生成 CS0539:
复制代码 | |
---|---|
// CS0539.cs namespace x { interface I { void m(); } public class clx : I { void I.x() // CS0539 { } public static int Main() { return 0; } } } |