如何创建检查特定属性值的自定义静态分析规则
我想使用 FXCop 内省 API 创建一个自定义规则来验证以下内容:
在 MethodA 中,代码将静态类 C 上的属性 B 设置为值 D :
void MethodA() { CB=D; 我
该怎么写这个? 另外我如何通过规则进行调试?
I would like to use the FXCop introspection API to create a custom rule that verifies the following:
in MethodA, the code sets a property B on a static class C to value D :
void MethodA()
{
C.B=D;
}
how can I write this?
also how can I debug through a rule?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的第一个问题我不太清楚。您是否希望 FxCop 将此模式报告为问题?
对于第二个问题:
Visual Studio 将在您设置的断点处中断。
我发现这个网站相当广泛。
Your first question isn't exactly clear to me. Is this a pattern you want to have FxCop report as a problem?
For your second question:
Visual Studio will break on the break points you have set.
I found this site to be quite extensive.