Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Differences in string compare methods in C#

Is there any difference between these methods?

string.Compare(s1, s2) == 0
s1.CompareTo(s2) == 0
s1.Equals(s2)
s1 == s2

Which one should I use?

share|improve this question

marked as duplicate by Mitch Dempsey, Matthew Flaschen, Brian Rasmussen, Ben Voigt, Marc Gravell Sep 27 '10 at 5:04

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

From reflector:

public static int Compare(string strA, string strB)
{
    return CultureInfo.CurrentCulture.CompareInfo.Compare(strA, strB, CompareOptions.None);
}
public int CompareTo(string strB)
{
    if (strB == null)
    {
        return 1;
    }
    return CultureInfo.CurrentCulture.CompareInfo.Compare(this, strB, CompareOptions.None);
}

So CompareTo has an additional reference check than Compare.

public static bool operator ==(string a, string b)
{
    return Equals(a, b);
}

So == is exactly the same as Equals. The difference between two Compare and two Equals is, you can pass CompareOptions argument to Compare, and it returns 0/1/-1. while Equals doesn't receive a CompareOptions argument, and it can tell you TRUE/FALSE only.

share|improve this answer

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