更新:2007 年 11 月
错误消息
“member”已过时:“text”类成员是用
下面的示例生成 CS0618:
复制代码 | |
---|---|
// CS0618.cs // compile with: /W:2 using System; public class C { [Obsolete("Use newMethod instead", false)] // warn if referenced public static void m2() { } public static void newMethod() { } } class MyClass { public static void Main() { C.m2(); // CS0618 } } |