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?
Is there any difference between these methods?
Which one should I use? |
|||
|
|
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.
|
From reflector:
So
So |
|||
|
|