Compiler Warning (level 2) CS0618
“member”已过时:“text”
类成员是用 Obsolete 特性标记的,以致在引用该类成员时会发出警告。有关更多信息,请参见常用特性(C# 和 Visual Basic)。
下面的示例生成 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
}
}