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

I have a condition in a silverlight application that comapres 2 strings, for some reason when I use '==' it returns false while .Equals() returns true. Here is the code :

 if (((ListBoxItem)lstBaseMenu.SelectedItem).Content.Equals("Energy Attack"))
 {
// Execute code
 }

 if (((ListBoxItem)lstBaseMenu.SelectedItem).Content == "Energy Attack")
 {
// Execute code
 }

Any reason as to why this is happening?

share|improve this question
Possible duplicate: stackoverflow.com/questions/144530/or-equals – Arrow Jun 7 '12 at 8:39

8 Answers

up vote 57 down vote accepted

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).

share|improve this answer
7  
Unless the operator is specifically implemented in the class – Dominic Cronin Nov 19 '11 at 21:11
1  
@DominicCronin This isn't true. Even if == is implemented in the class it will be ignored because the type on the left of the comparison is object. It looks like operator overloads are determined at compile time and at compile time all it knows is that the left hand side is an object. – MikeKulls Jul 15 '12 at 22:53
@MikeKulls In the question, the type returned by .Content is object, so yes. However, Mehrdad says "an object type", not "a reference of type object". My interpretation was that he meant a reference type, and that the implementation of == would resolve to that on object. Even so, operator overloads are resolved in a similar manner to that for virtual methods. – Dominic Cronin Jul 16 '12 at 12:36
@DominicCronin I believe your first statement is correct in that == will resolve to object but your second statement that operator overloads resolve in a similar manner is not. They are quite different which is why .Equals will resolve to string while == will resolve to object. – MikeKulls Jul 16 '12 at 21:37
To be clear,object type (notice the monospace font) is technically meant to be "an expression of type System.Object". It does not have anything to do with the runtime type of the instance that is referred to by the expression. I think the statement "user-defined operators are treated like virtual methods" is extremely misleading. They are treated like overloaded methods and only depend on the compile-time type of the operands. In fact, after the set of candidate user-defined operators is computed, the rest of the binding procedure will be exactly the method overload resolution algorithm – Mehrdad Afshari Jul 16 '12 at 22:28
show 5 more comments

INACCURATE: String.Equals compares string content, but "==" compares object references. If the two strings you are comparing are referring to the same exact instance of a string, both will return true, but if one of the strings has the same content and came from a different source (is a separate instance of a string), only Equals will return true.

CORRECTION: The second comment associated with this post is correct. The following code illustrates the issue:

string s1 = "test";
string s2 = "test";
string s3 = "test1".Substring(0, 4);
object s4 = s3;
Console.WriteLine("{0} {1} {2}", object.ReferenceEquals(s1, s2), s1 == s2, s1.Equals(s2));
Console.WriteLine("{0} {1} {2}", object.ReferenceEquals(s1, s3), s1 == s3, s1.Equals(s3));
Console.WriteLine("{0} {1} {2}", object.ReferenceEquals(s1, s4), s1 == s4, s1.Equals(s4));

The output is:
True True True
False True True
False False True

share|improve this answer
2  
Spot on. The '==' operator compares object references (shallow comparison) whereas .Equals() compares object content (deep comparison). As @mehrdad said, .Equals() is overridden to provide that deep content comparison. – Andrew May 2 '09 at 13:43
That posting is wrong. Mehrdad has the correct answer, and it differs in one crucial detail. == for strings behaves exactly like Equals! – Konrad Rudolph May 2 '09 at 13:48
I will leave the post here because I think it's valuable to emphasize what's not happening since you have to be paying close attention to realize it. (And I think the code to demonstrate the correct and incorrect understandings is worthwhile too.) I hope the rating won't go below 0. – BlueMonkMN May 2 '09 at 14:39
1  
Surely String implements a custom == operator. If it didn't then using == would not compare the content. So String is a bad example to use here, as it doesn't help us understand the general case where no custom operator has been defined. – Dominic Cronin Nov 19 '11 at 21:07

What == and .Equals does is both dependent upon the behavior defined in the actual type and the actual type at the call site. Both are just methods / operators which can be overridden on any type and given any behavior the author so desires. In my experience, I find it's common for people to implement .Equals on an object but neglect to implement operator ==. This means that .Equals will actually measure the equality of the values while == will measure whether or not they are the same reference.

When I'm working with a new type whose definition is in flux or writing generic algorithms, I find the best practice is the following

  • If I want to compare references in C#, I use Object.ReferenceEquals directly (not needed in the generic case)
  • If I want to compare values I use EqualityComparer<T>.Default

In some cases when I feel the usage of == is ambiguous I will explicitly use Object.Reference equals in the code to remove the ambiguity.

Eric Lippert recently did a blog post on the subject of why there are 2 methods of equality in the CLR. It's worth the read

share|improve this answer
Well Jared, you directly violate Jeff's famous “The best code is no code at all here.” Is this really justified? On the other hand, I can see where this stems from and why it might be desirable to make the semantics explicit. For this case, I very much prefer VB’s way of dealing with object equality. It's short and unambiguous. – Konrad Rudolph May 2 '09 at 13:51
@Konrad, I really should have said "when I'm unfamiliar with a type, i find the best practice is the following". Yes VB has much better semantics here because it truly separates value and reference equality. C# mixes the two together and it occasionally causes ambiguity errors. – JaredPar May 2 '09 at 14:04

I would add that if you cast your object to a string then it will work correctly. This is why the compiler will give you a warning saying "Possible unintended reference comparison; to get a value comparison, cast the left hand side to type 'string'"

share|improve this answer
+1 because this just helped me to understand what the whole discussion is about! – Dominic Cronin Nov 19 '11 at 21:13

I am a bit confused here. If the runtime type of Content is of type string, then both == and Equals should return true. However, since this does not appear to be the case, then runtime type of Content is not string and calling Equals on it is doing a referential equality and this explains why Equals("Energy Attack") fails. However, in the second case, the decision as to which overloaded == static operator should be called is made at compile time and this decision appears to be ==(string,string). this suggests to me that Content provides an implicit conversion to string.

share|improve this answer
1  
You have it back to front. For a start Equals("Energy Attack") does not fail, == is the one that returns false. The == fails because it is using the == from object, not string. – MikeKulls Aug 11 '11 at 3:33
By default, the operator == tests for reference equality by determining whether two references indicate the same object. Therefore, reference types do not have to implement operator == in order to gain this functionality. When a type is immutable, that is, the data that is contained in the instance cannot be changed, overloading operator == to compare value equality instead of reference equality can be useful because, as immutable objects, they can be considered the same as long as they have the same value. It is not a good idea to override operator == in non-immutable types. – 01010111 01010011 Dec 30 '11 at 6:14

Adding one more point to the answer.

.EqualsTo method gives you provision to compare against culture and case sensitive.

share|improve this answer

== Operator 1. If operands are Value Types and their values are equal, it returns true else false. 2. If operands are Reference Types with exception of string and both refer to same object, it returns true else false. 3. If operands are string type and their values are equal, it returns true else false.

.Equals 1. If operands are Reference Types, it performs Reference Equality that is if both refer to same object it returns true else false. 2. If Operands are Value Types then unlike == operator it checks for their type first. If their types are same it performs == value type equality else it returns false.

share|improve this answer

If its a object type then “==” compares if the object references are same while “.Equals()” compares if the contents are same.

If its a string object then it does content comparison , irrespective you either use ".Equals()" or you use the "==" operator.

See the below youtube video which actually demonstrates the same.

http://www.youtube.com/watch?v=3IReFdq5d7o

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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