Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
C#: Are string.Equals() and == operator really same?

For string comparison, which approach is better (and safe):

string s1="Sarfaraz";
string s2="Nawaz";

bool result1 = (s1==s2) ;//approach 1
bool result2 = s1.Equals(s2) ;//approach 2

Or both are same under the hood?

share|improve this question
3  
see the answer to stackoverflow.com/questions/3678792/… – nick Jan 19 '11 at 20:02
@nick : thanks for the link :-). I voted for closing this topic. – Nawaz Jan 19 '11 at 20:07
1  
It depends if you consider "dog" and "Dog" to be the same word, while you can manipulate the string in your first approach using String.Equals(S1,S2,StringComparison.CurrentCultureIgnoreCase) can be handy and elegant. – Ramhound Jan 19 '11 at 20:13
@Ramhound: very nice point! – Nawaz Jan 19 '11 at 20:18
one warning is that if the strings are null you will throw an exception. Of course they if you are comparing their value then your expecting a value. – Ramhound Jan 19 '11 at 20:32

marked as duplicate by Kyle Trauberman, Nawaz, adrianbanks, Porges, Henk Holterman Jan 19 '11 at 20:18

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.

2 Answers

up vote 2 down vote accepted

I like Equals cause of the StringComparison Option is very useful.

the == / != operations are based on the value, so they are safe to use, even string is a reference type.

share|improve this answer
Also worth mentioning if s1 is null the results will differ. – Porges Jan 19 '11 at 20:11

Believe this has been asked/answered already C# overloading operator== versus Equals()

Basically Equals checks object similarity, and operator == checks reference equality.

share|improve this answer
Not true. These are strings. – Porges Jan 19 '11 at 20:09

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