編譯器錯誤 CS0619
'member' 已過時: 'text'
類別成員已標上 Obsolete 屬性,因此,參考類別成員時,會發出錯誤。
下列範例會產生 CS0619:
using System;
public class C
{
[Obsolete("Use NewMethod instead", true)] // generates an error on use
public static void OldMethod()
{
}
// this is the method you should be using
public static void NewMethod()
{
}
}
class MyClass
{
public static void Main()
{
C.OldMethod(); // CS0619
}
}