İngilizce dilinde oku

Aracılığıyla paylaş


Derleyici Hatası CS0619

'member' kullanımdan kaldırıldı: 'text'

Sınıf üyesi Eski özniteliğiyle işaretlendi, böylece sınıf üyesine başvurulduğunda bir hata verilir.

Örnek

Aşağıdaki örnek CS0619 oluşturur:

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
   }
}