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?
|
1
|
|
|
|
|
|
StringWriter doesn't override object.Equals.
is equivalent to :
|
||||
|
|
|
this will return true |
||
|
|
|
|
|
||||
|
|
|
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. |
||
|
|