更新:2007 年 11 月

错误消息

“member”已过时

类设计器使用 Obsolete 属性标记了成员。这意味着在类的未来版本中可能不支持该成员。

下面的示例显示访问过时的成员如何生成 CS0612:

 复制代码
// CS0612.cs
// compile with: /W:1
using System;

class MyClass
{
   [Obsolete]
   public static void ObsoleteMethod()
   {
   }

   [Obsolete]
   public static int ObsoleteField;
}

class MainClass
{
   static public void Main()
   {
      MyClass.ObsoleteMethod();    // CS0612 here: method is deprecated
      MyClass.ObsoleteField = 0;   // CS0612 here: field is deprecated
   }
}