MapValue.Inequality Operator
Indicates whether the two specified map keys are not equal.
Namespace: Microsoft.SqlServer.XEvent
Assembly: Microsoft.SqlServer.XEvent.Linq (in Microsoft.SqlServer.XEvent.Linq.dll)
Syntax
'Declaration
Public Shared Operator <> ( _
x As MapValue, _
y As MapValue _
) As Boolean
'Usage
Dim x As MapValue
Dim y As MapValue
Dim returnValue As Boolean
returnValue = (x <> y)
public static bool operator !=(
MapValue x,
MapValue y
)
public:
static bool operator !=(
MapValue^ x,
MapValue^ y
)
static let inline(<>)
x:MapValue *
y:MapValue : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parameters
- x
Type: Microsoft.SqlServer.XEvent.MapValue
The map key.
- y
Type: Microsoft.SqlServer.XEvent.MapValue
The map key.
Return Value
Type: System.Boolean
True if the two specified map keys are not equal; otherwise, false.