Possible Duplicate:
C#: String.Equals vs. ==

Hi to all.

Some time someone told me that you should never compare strings with == and that you should use string.equals(), but it refers to java.

¿What is the diference beteen == and string.equals in .NET c#?

link|improve this question

61% accept rate
feedback

closed as exact duplicate by Henk Holterman, Oded, Mr. Disappointment, eldarerathis, Tim Cooper Apr 26 '11 at 20:44

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

8 Answers

up vote 4 down vote accepted

string == string is entirely the same as String.Equals. This is the exact code (from Reflector):

public static bool operator ==(string a, string b)
{
    return Equals(a, b); // Is String.Equals as this methods is inside String
}
link|improve this answer
So, can I say that == is less performance than equals? – Daniel G. R. Apr 26 '11 at 20:47
1  
@Daniel G. R. No, small methods will be inlined by the just-in-time compiler so don't worry about that :) And if there is a VERY small time increase in the JIT-compiling itself, you shouldn't worry about that ;) – lasseespeholt Apr 26 '11 at 20:50
feedback

In C# there is no difference as the operator == and != have been overloaded in string type to call equals(). See this MSDN page.

link|improve this answer
feedback

Look here for a better description. As one answer stated

When == is used on an object type, it'll resolve to System.Object.ReferenceEquals.

Equals is just a virtual method and behaves as such, so the overridden version will be used (which, for string type compares the contents).

link|improve this answer
feedback

== actually ends up executing String.Equals on Strings.

You can specify a StringComparision when you use String.Equals....

Example:

MyString.Equals("TestString", StringComparison.InvariantCultureIgnoreCase)

Mostly, I consider it a coding preference. Use whichever you prefer.

link|improve this answer
feedback

The == operator calls the String.Equals method. So at best you're saving a method call. Decompiled code:

public static bool operator ==(string a, string b)
{
  return string.Equals(a, b);
}
link|improve this answer
feedback

no difference, it's just an operator overload. for strings it's internally the same thing. however, you don't want to get in a habit of using == for comparing objects and that's why it's not recommended to use it for strings as well.

link|improve this answer
feedback

In C# there's no difference for strings.

link|improve this answer
feedback

If you dont care about the string's case and dont worry about cultural awarenes then it's the same...

link|improve this answer
feedback

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