Here are the rules for how these functions work:
stringValue.CompareTo(otherStringValue)
nullcomes before a string- it uses
CultureInfo.CurrentCulture.CompareInfo.Compare, which means it will use a culture-dependent comparison. This might mean thatßwill compare equal toSSin Germany, or similar
stringValue.Equals(otherStringValue)
nullis not considered equal to anything- unless you specify a
StringComparisonoption, it will use what looks like a direct ordinal equality check, i.e.ßis not the same asSS, in any language or culture
stringValue == otherStringValue
- Is not the same as
stringValue.Equals(). - The
==operator calls the staticEquals(string a, string b)method (which in turn goes to an internalEqualsHelperto do the comparison. - Calling
.Equals()on anullstring getsnullreference exception, while on==does not.
Object.ReferenceEquals(stringValue, otherStringValue)
Just checks that references are the same, i.e. it isn’t just two strings with the same contents, you’re comparing a string object with itself.
Note that with the options above that use method calls, there are overloads with more options to specify how to compare.
My advice if you just want to check for equality is to make up your mind whether you want to use a culture-dependent comparison or not, and then use .CompareTo or .Equals, depending on the choice.