HashCode.Equality Operator
Overloads the equality operator (==) so that it can be used to test the equality between two hash code values.
Namespace: Microsoft.BusinessData.Infrastructure
Assembly: Microsoft.BusinessData (in Microsoft.BusinessData.dll)
Syntax
'Declaration
Public Shared Operator = ( _
left As HashCode, _
right As HashCode _
) As Boolean
'Usage
Dim left As HashCode
Dim right As HashCode
Dim returnValue As Boolean
returnValue = (left = right)
public static bool operator ==(
HashCode left,
HashCode right
)
Parameters
left
Type: Microsoft.BusinessData.Infrastructure.HashCodeThe first hash code value.
right
Type: Microsoft.BusinessData.Infrastructure.HashCodeThe second hash code value.
Return Value
Type: System.Boolean
true if the hash values are equal; otherwise, false.