Baca dalam bahasa Inggris

Bagikan melalui


Compiler Error CS0619

'member' sudah usang: 'text'

Anggota kelas ditandai dengan atribut Usang, sehingga kesalahan akan muncul ketika anggota kelas direferensikan.

Contoh

Contoh berikut menghasilkan CS0619:

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