更新:2007 年 11 月
错误消息
Conditional 在接口成员上无效ConditionalAttribute 在接口成员上无效。
下面的示例生成 CS0582:
复制代码 | |
---|---|
// CS0582.cs // compile with: /target:library using System.Diagnostics; interface MyIFace { [ConditionalAttribute("DEBUG")] // CS0582 void zz(); } |
更新:2007 年 11 月
ConditionalAttribute 在接口成员上无效。
下面的示例生成 CS0582:
复制代码 | |
---|---|
// CS0582.cs // compile with: /target:library using System.Diagnostics; interface MyIFace { [ConditionalAttribute("DEBUG")] // CS0582 void zz(); } |