更新:2007 年 11 月
错误消息
“member”: 只有符合 CLS 的成员才能是抽象的类成员不能既
示例
下面的示例生成 CS3011:
复制代码 | |
---|---|
// CS3011.cs using System; [assembly:CLSCompliant(true)] public abstract class I { [CLSCompliant(false)] public abstract int M(); // CS3011 // OK [CLSCompliant(false)] public void M2() { } } public class C : I { public override int M() { return 1; } public static void Main() { } } |