FxCop 字符串 == 的规则?

发布于 2024-09-16 08:37:07 字数 205 浏览 4 评论 0原文

谁能告诉我一个 fxcop 规则来识别“string ==”的用法。例如:

string s = "abc";
if (s == "def") {
    // do somethign
}

我希望将“if”语句作为错误引发。粗略地说,我希望始终将 string.compare 与适当的区域性一起使用。

谢谢!

Can anyone point me to an fxcop rule for identifing "string ==" usage. For example:

string s = "abc";
if (s == "def") {
    // do somethign
}

I want the "if" statement raised as an error. Roughly speaking I want to always be using string.compare with the appropriate culture.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉城 2024-09-23 08:37:07

您可能必须为此编写自己的自定义规则,但这应该不会太难。请参阅此处找到的文件。另外,使用 .NET Reflector 查看 FxCop 库并了解这是如何实现的完成了。

You might have to write your own custom rule for this, but it shouldn't be too hard. Refer to the files found here. Also, use .NET Reflector to look at the FxCop libraries and get an idea of how this is done.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文