风格警察镇压消息
如何对自定义规则使用抑制?
How to use suppression for custom rules?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何对自定义规则使用抑制?
How to use suppression for custom rules?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以使用 SuppressMessageAttribute 抑制自定义规则违规,其方式与对作为 StyleCop 的一部分提供的规则的方式完全相同。例如:(
其中命名空间、规则 ID 和规则名称必须全部替换为规则的实际值)
You can suppress custom rule violations using SuppressMessageAttribute in exactly the same manner as is done for rules that ship as part of StyleCop. e.g.:
(where the namespace, rule ID, and rule name must all be replaced by the actual values for the rule)
我利用 stylecop 忽略标题中带有“生成代码”的区域的事实,并执行以下操作:
I use the fact that stylecop ignores regions with "generated code" in title and do the following: