标签: c# compiler-errors compiler-warnings
是否可以让一些代码让编译器生成编译警告或错误?
也许有属性?
** 得到第一个答案和一些评论我意识到我的问题并不像我预期的那样清晰,并希望它成为现实。我道歉。希望所有的贡献者仍然和我们在一起 **
所以我更关注内部DSL。
S.Th。像
[MustAssign] public string Val {get; set;]
答案 0 :(得分:6)
您的意思是#warning吗?
#warning 可让您从代码中的特定位置生成一级警告。例如:
#warning Deprecated code in this method.
对于错误,有(你永远不会猜到),#error。