过时的属性不会在 VS2010 中引起任何编译器警告

发布于 2024-09-03 12:09:07 字数 94 浏览 5 评论 0原文

我正在使用 Visual Studio 2010。但发现 Obsolete 属性不会导致任何编译器警告(我希望它导致编译器警告)。 警告级别为 4。

谢谢。

I'm using Visual Studio 2010. But find that the Obsolete attribute doesn't cause any compiler warning (I want it to cause a compiler warning).
The warning level is 4.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

私藏温柔 2024-09-10 12:09:07

当您尝试使用时,过时属性将导致编译器警告用它标记的类/方法。例如,以下内容会导致警告:

[Obsolete("some obsolete message")]
class Foo { }

class Program
{
    static void Main(string[] args)
    {
        Foo foo = new Foo();
    }
}

而这不会:

[Obsolete("some obsolete message")]
class Foo { }

class Program
{
    static void Main(string[] args)
    { }
}

The obsolete attribute will cause a compiler warning when you try to use the class/method that's marked with it. For example the following causes a warning:

[Obsolete("some obsolete message")]
class Foo { }

class Program
{
    static void Main(string[] args)
    {
        Foo foo = new Foo();
    }
}

while this doesn't:

[Obsolete("some obsolete message")]
class Foo { }

class Program
{
    static void Main(string[] args)
    { }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文