C#--Obsolete
2021-04-11 04:26
标签:错误 string color 分享 div info http 配置 com Obsolete 属性将某个程序实体标记为一个建议不再使用的实体。在调用该实体时,更具属性配置,将生成警告或错误。 用法如下: [Obsolete("提示信息",false|true)] ,第二个参数为ture时,调用拥有该属性的实体时,会提示错误,为false时,会提示过时,但仍可以调用。 示例如下: 把光标移到test1上时,会有如下提示: 第二个参数为true时,提示如下: test1出现红色下划线,提示错误。 C#--Obsolete 标签:错误 string color 分享 div info http 配置 com 原文地址:https://www.cnblogs.com/zyfadmin/p/9030629.htmlclass Program
{
[Obsolete("test1已经过时,可以用test2",false)]
static void test1()
{
Console.WriteLine("test1");
}
static void test2()
{
Console.WriteLine("test2");
}
static void Main(string[] args)
{
test1();
test2();
Console.ReadKey();
}
}