Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Compares two keys for value inequality.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Syntax
'Declaration
Public Shared Operator <> ( _
leftOperand As SchemaNamedKey(Of T), _
rightOperand As SchemaNamedKey(Of T) _
) As Boolean
'Usage
Dim leftOperand As SchemaNamedKey(Of T)
Dim rightOperand As SchemaNamedKey(Of T)
Dim returnValue As Boolean
returnValue = (leftOperand <> rightOperand)
public static bool operator !=(
SchemaNamedKey<T> leftOperand,
SchemaNamedKey<T> rightOperand
)
public:
static bool operator !=(
SchemaNamedKey<T>^ leftOperand,
SchemaNamedKey<T>^ rightOperand
)
static let inline(<>)
leftOperand:SchemaNamedKey<'T> *
rightOperand:SchemaNamedKey<'T> : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parameters
- leftOperand
Type: Microsoft.SqlServer.Management.Sdk.Sfc.SchemaNamedKey<T>
The first key to compare.
- rightOperand
Type: Microsoft.SqlServer.Management.Sdk.Sfc.SchemaNamedKey<T>
The second key to compare.
Return Value
Type: System.Boolean
true if both keys are not equal or only one is nulla null reference (Nothing in Visual Basic); otherwise, false.