vote up 1 vote down star

I recently was introduced to a large codebase and noticed all string comparisons are done using String.Equals() instead of ==.

What's the reason for this, do you think?

flag

60% accept rate

4 Answers

vote up 1 vote down

I sometimes use the .Equals method, because it can make things slightly clearer and more concise at times. Consider:

public static bool IsHello(string test) {
   return (test != null && test == "Hello");
}

The test for NULL can be completely ignored if using .Equals like so:

public static bool IsHello(string test) {
   return ("Hello".Equals(test));
}
link|flag
vote up 4 vote down

String.Equals does offer overloads to handle casing and culture-aware comparison. If your code doesn't make use of these, the devs may just be used to Java, where (as Matthew says), you must use the .Equals method to do content comparisons.

link|flag
vote up 6 vote down

It's entirely likely that a large portion of the developer base comes from a Java background where using == to compare strings is wrong and doesn't work.

In C# there's no (practical) difference (for strings).

link|flag
There are slight differences. – Yuriy Faktorovich Nov 2 at 2:02
Not as far as the values returned goes. .Equals does offer more options but str1.Equals(str2) is the same as str1 == str2 as far as what you get as a result. I do believe they use different methods for determining the equality as Jon Skeets quote that Blaenk brings up would indicate, but they give the same values. – Matthew Scharley Nov 2 at 2:04
Functionality wise they are the same, but computationally there are slight differences. – Yuriy Faktorovich Nov 2 at 2:32
@Yuriy Perhaps you could elaborate or provide a link on the differences? – Kirk Broadhurst Nov 2 at 6:57
From Blaenk's answer: dotnetperls.com/string-equals-compare – Matthew Scharley Nov 2 at 7:13
show 1 more comment
vote up 4 vote down

There's a writeup on this article which you might find to be interesting, with some quotes from Jon Skeet. It seems like the use is pretty much the same.

Jon Skeet states that the performance of instance Equals "is slightly better when the strings are short—as the strings increase in length, that difference becomes completely insignificant."

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.