Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

คุณลักษณะที่ล้าสมัยใน C # คืออะไร


หากเมธอดมีแอททริบิวต์ที่ล้าสมัย คอมไพเลอร์จะส่งคำเตือนในโค้ดหลังจากที่คอมไพล์แล้ว

เมื่อมีการใช้วิธีการใหม่ในชั้นเรียนและหากคุณยังคงต้องการเก็บวิธีการเดิมไว้ในชั้นเรียน คุณอาจทำเครื่องหมายว่าล้าสมัยโดยแสดงข้อความว่าควรใช้วิธีการใหม่แทนวิธีการเก่า

ต่อไปนี้คือตัวอย่างที่แสดงวิธีการใช้แอตทริบิวต์ที่ล้าสมัย -

using System;

public class Demo {
   [Obsolete("Old Method shouldn't be used! Use New Method instead", true)]

   static void OldMethod() {
      Console.WriteLine("This is the old method!");
   }

   static void NewMethod() {
      Console.WriteLine("This is the new method!");
   }

   public static void Main() {
      OldMethod();
   }
}

ตามที่เราได้ตั้งค่าข้อความเตือนไว้ข้างต้น มันจะแสดงคำเตือนต่อไปนี้ -

Compilation failed: 1 error(s), 0 warnings
error CS0619: `Demo.OldMethod()' is obsolete: `Old Method shouldn't be used! Use New Method instead'