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?
|
|
|
|
|
|
|
I sometimes use the .Equals method, because it can make things slightly clearer and more concise at times. Consider:
The test for NULL can be completely ignored if using .Equals like so:
|
||
|
|
|
|
|
||
|
|
|
|
It's entirely likely that a large portion of the developer base comes from a Java background where using In C# there's no (practical) difference (for strings). |
||||||||||
|
|
|
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.
|
||
|
|