更新:2007 年 11 月
错误消息
Conditional 属性在“function”上无效,因为其返回类型不是 void示例
下面的示例生成 CS0578。若要解决此错误,必须删除
复制代码 | |
---|---|
// CS0578.cs // compile with: /target:library public class MyClass { [System.Diagnostics.ConditionalAttribute("a")] // CS0578 public int TestMethod() { return 0; } } |