Hey all,
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!