vote up 2 vote down star
1

The first line is true, the second is false. htmlOut and s2 are StringWriter objects.

    bool b = s2.ToString() == htmlOut.ToString();
    ret = htmlOut.Equals(s2);

I expected true which b is but why is ret false?

flag

38% accept rate

4 Answers

vote up 3 vote down

StringWriter doesn't override object.Equals.

htmlOut.Equals(s2);

is equivalent to :

object.ReferenceEquals(htmlOut, s2);
link|flag
1  
Not exactly. htmlOut.Equals(s2); will throw a NullReferenceException if htmlOut is null while object.ReferenceEquals(htmlOut, s2); will not. – dtb Jul 26 at 10:45
vote up 1 vote down
htmlOut.ToString().Equals(s2.ToString());

this will return true

link|flag
vote up 7 vote down

StringWriter uses an internal StringBuilder to write to. StringWriter.ToString() returns the string built by StringBuilder.

StringWriter does not override object.Equals() so StringWriter.Equals() compares if the two objects are the same reference, not if their string representations are equal.

link|flag
so with StringWriter .Equals is the same as == ? – acidzombie24 Jul 26 at 7:26
StringWriter does not implement the == operator which defaults to reference equality, too, so yes. – dtb Jul 26 at 8:36
vote up 2 vote down

The default implementation of Equals supports reference equality for reference types, and bitwise equality for value types. Does the type of htmlOut have a non-default overridden Equals method?

In this case, it seems not, and it's telling you that they are different instances, whether or not their semantic values match up.

link|flag

Your Answer

Get an OpenID
or

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