Computer.Key.Inequality Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether the specified object key is not equal to the second object key.
Overloads
Inequality(Computer+Key, Computer+Key) |
Determines whether the specified object key is not equal to the second object key. |
Inequality(Computer+Key, Object) |
Determines whether the specified object key is not equal to the object. |
Inequality(Object, Computer+Key) |
Determines whether the specified object is not equal to the object key. |
Inequality(Computer+Key, Computer+Key)
Determines whether the specified object key is not equal to the second object key.
public:
static bool operator !=(Microsoft::SqlServer::Management::Utility::Computer::Key ^ leftOperand, Microsoft::SqlServer::Management::Utility::Computer::Key ^ rightOperand);
public static bool operator != (Microsoft.SqlServer.Management.Utility.Computer.Key leftOperand, Microsoft.SqlServer.Management.Utility.Computer.Key rightOperand);
static member op_Inequality : Microsoft.SqlServer.Management.Utility.Computer.Key * Microsoft.SqlServer.Management.Utility.Computer.Key -> bool
Public Shared Operator != (leftOperand As Computer.Key, rightOperand As Computer.Key) As Boolean
Parameters
- leftOperand
- Computer.Key
A Computer.Key to compare.
- rightOperand
- Computer.Key
A second Computer.Key to compare.
Returns
A Boolean which is true
if the two operands are not equal, otherwise false
.
Applies to
Inequality(Computer+Key, Object)
Determines whether the specified object key is not equal to the object.
public:
static bool operator !=(Microsoft::SqlServer::Management::Utility::Computer::Key ^ leftOperand, System::Object ^ obj);
public static bool operator != (Microsoft.SqlServer.Management.Utility.Computer.Key leftOperand, object obj);
static member op_Inequality : Microsoft.SqlServer.Management.Utility.Computer.Key * obj -> bool
Public Shared Operator != (leftOperand As Computer.Key, obj As Object) As Boolean
Parameters
- leftOperand
- Computer.Key
A Computer.Key to compare.
Returns
A Boolean which is true
if the two operands are not equal, otherwise false
.
Applies to
Inequality(Object, Computer+Key)
Determines whether the specified object is not equal to the object key.
public:
static bool operator !=(System::Object ^ obj, Microsoft::SqlServer::Management::Utility::Computer::Key ^ rightOperand);
public static bool operator != (object obj, Microsoft.SqlServer.Management.Utility.Computer.Key rightOperand);
static member op_Inequality : obj * Microsoft.SqlServer.Management.Utility.Computer.Key -> bool
Public Shared Operator != (obj As Object, rightOperand As Computer.Key) As Boolean
Parameters
- rightOperand
- Computer.Key
A Computer.Key to compare.
Returns
A Boolean which is true
if the two operands are not equal, otherwise false
.