C# 中哪些属性已过时?

WBOY
发布: 2023-09-13 12:21:07
转载
579 人浏览过

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
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板