Condition.Key.Equality Operator (Object, Condition.Key)
Performs a Boolean equality operation to determine whether two condition keys reference the same condition.
Namespace:  Microsoft.SqlServer.Management.Dmf
Assembly:  Microsoft.SqlServer.Dmf (in Microsoft.SqlServer.Dmf.dll)
Syntax
'Declaration
Public Shared Operator = ( _
    obj As Object, _
    rightOperand As Condition..::..Key _
) As Boolean
'Usage
Dim obj As Object
Dim rightOperand As Condition..::..Key
Dim returnValue As Boolean
returnValue = (obj = rightOperand)
public static bool operator ==(
    Object obj,
    Condition..::..Key rightOperand
)
public:
static bool operator ==(
    Object^ obj, 
    Condition..::..Key^ rightOperand
)
static let inline (=)
        obj:Object * 
        rightOperand:Condition..::..Key  : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parameters
- obj
Type: System.Object
A Object object representing one of the condition keys to compare. If the object does not reference a Condition.Key, the method returns False. 
- rightOperand
Type: Microsoft.SqlServer.Management.Dmf.Condition.Key
A Condition.Key object representing the other condition keys to compare. 
Return Value
Type: System.Boolean
A Boolean value specifying whether the two condition keys are the same. Returns True if both parameters are null or reference the same condition. Otherwise, returns False.
See Also