LocalValueEntry.Equals(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether two LocalValueEntry instances are equal.
public:
override bool Equals(System::Object ^ obj);
public override bool Equals (object obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean
Parameters
- obj
- Object
The LocalValueEntry to compare with the current LocalValueEntry.
Returns
This Equality(LocalValueEntry, LocalValueEntry) implementation compares the values of the Property, and potentially compares the values of Value. The Property component of a LocalValueEntry is a value type, so will always be a bitwise comparison. For the Value component, this implementation employs a bitwise comparison if it is a value type. For locally set properties that have reference types, the behavior is deferred to that type's equality determination mechanisms, because it just uses the == operator on the two values internally. By default, this would be a reference equality of the values and thus the equality of the entire LocalValueEntry would become a reference equality.