标签: .net
Custom Compiler Warnings in .NET
我希望能够使用NotImplementedAttribute标记我的代码,如果使用该方法,编译器会在构建时发出警告或错误。
NotImplementedAttribute
我知道有ObsoleteAttribute,但它传达了一些非常不同的东西。
ObsoleteAttribute
答案 0 :(得分:1)
你无法做任何类似于ObsoleteAttribute的事情。然后,您可以在代码中添加#warning指令,以便编译器发出警告。但是,除非删除该指令,否则它将存在。
#warning
答案 1 :(得分:1)
这已在此处讨论过:
Custom Compiler Warnings