What is the default behavior of Equals Method?

The default implementation of Equals
supports reference equality for
reference types
, and bitwise equality
for value types
. Reference equality
means the object references that are
compared refer to the same object.
Bitwise equality means the objects
that are compared have the same binary
representation.

http://msdn.microsoft.com/en-us/library/bsc2ak47.aspx

Leave a Comment