|
Equals
Compares two values for equality.
template<typename T>
|
Parameters
x
[in] The first value
y
[in] The second value
Return Value
Returns true if the objects are equal, or false otherwise.
Note
If the T type is an object that implements the IEqualityComparable<T> interface, then the objects will be compared based on its Equals comparison method. The standard comparison for equality is used in all other cases.