首頁  >  文章  >  後端開發  >  C# 中哪些屬性已過時?

C# 中哪些屬性已過時?

WBOY
WBOY轉載
2023-09-13 12:21:07585瀏覽

C# 中哪些属性已过时?

如果方法具有過時的屬性,則編譯器在編譯後會在程式碼中發出警告。

當類別中使用新方法並且您仍想保留該方法時類別中的舊方法,您可以透過顯示應使用新方法而不是舊方法的訊息將其標記為過時。

以下是顯示如何使用過時屬性的範例 - p>

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'

以上是C# 中哪些屬性已過時?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除