过时的属性不会在 VS2010 中引起任何编译器警告
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您尝试使用时,过时属性将导致编译器警告用它标记的类/方法。例如,以下内容会导致警告:
而这不会:
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:
while this doesn't: