NameKey.Inequality Operator (NameKey, Object)
Determines whether the object represented by the specified NameKey is different than the specified Object.
Namespace: Microsoft.SqlServer.Management.Utility
Assembly: Microsoft.SqlServer.Management.Utility (in Microsoft.SqlServer.Management.Utility.dll)
Syntax
'Declaration
Public Shared Operator <> ( _
leftOperand As NameKey, _
obj As Object _
) As Boolean
'Usage
Dim leftOperand As NameKey
Dim obj As Object
Dim returnValue As Boolean
returnValue = (leftOperand <> obj)
public static bool operator !=(
NameKey leftOperand,
Object obj
)
public:
static bool operator !=(
NameKey^ leftOperand,
Object^ obj
)
static let inline(<>)
leftOperand:NameKey *
obj:Object : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parameters
- leftOperand
Type: Microsoft.SqlServer.Management.Utility.NameKey
A NameKey object that represents the first object to compare.
- obj
Type: System.Object
A Object that specifies the second object to compare.
Return Value
Type: System.Boolean
A Boolean value that is true if the two objects are different, otherwise false.