Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道 #warning 指令在 vb.net 中不存在......有类似的东西吗? 我希望能够在编译器时抛出消息(警告)。
据我所知……没有。
它与预处理器警告不同,但在大多数情况下,当我需要为用户发出警告时,我会使用 ObsoleteAttribute 生成警告:
<ObsoleteAttribute("You should no used this method!", False)> Sub MySub() End Sub
但是,由于它与预处理器警告不同,它只会在有人使用该方法时触发。