IdKey.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 two specified key objects have different values.
Overloads
Inequality(IdKey, IdKey) |
Indicates whether the two specified key objects have different values using the specified operands. |
Inequality(IdKey, Object) |
Indicates whether the specified object and the left-hand side of the key are unequal. |
Inequality(Object, IdKey) |
Indicates whether the specified object and the right-hand side of the key are unequal. |
Inequality(IdKey, IdKey)
Indicates whether the two specified key objects have different values using the specified operands.
public:
static bool operator !=(Microsoft::SqlServer::Management::IntegrationServices::IdKey ^ leftOperand, Microsoft::SqlServer::Management::IntegrationServices::IdKey ^ rightOperand);
public static bool operator != (Microsoft.SqlServer.Management.IntegrationServices.IdKey leftOperand, Microsoft.SqlServer.Management.IntegrationServices.IdKey rightOperand);
static member op_Inequality : Microsoft.SqlServer.Management.IntegrationServices.IdKey * Microsoft.SqlServer.Management.IntegrationServices.IdKey -> bool
Public Shared Operator != (leftOperand As IdKey, rightOperand As IdKey) As Boolean
Parameters
Returns
true if the two specified key objects have different values using the specified operands; otherwise, false.
Applies to
Inequality(IdKey, Object)
Indicates whether the specified object and the left-hand side of the key are unequal.
public:
static bool operator !=(Microsoft::SqlServer::Management::IntegrationServices::IdKey ^ leftOperand, System::Object ^ obj);
public static bool operator != (Microsoft.SqlServer.Management.IntegrationServices.IdKey leftOperand, object obj);
static member op_Inequality : Microsoft.SqlServer.Management.IntegrationServices.IdKey * obj -> bool
Public Shared Operator != (leftOperand As IdKey, obj As Object) As Boolean
Parameters
- obj
- Object
The specified object.
Returns
true if the specified object and the left-hand side of the key are unequal; otherwise, false.
Applies to
Inequality(Object, IdKey)
Indicates whether the specified object and the right-hand side of the key are unequal.
public:
static bool operator !=(System::Object ^ obj, Microsoft::SqlServer::Management::IntegrationServices::IdKey ^ rightOperand);
public static bool operator != (object obj, Microsoft.SqlServer.Management.IntegrationServices.IdKey rightOperand);
static member op_Inequality : obj * Microsoft.SqlServer.Management.IntegrationServices.IdKey -> bool
Public Shared Operator != (obj As Object, rightOperand As IdKey) As Boolean
Parameters
- obj
- Object
The specified object.
Returns
true if the specified object and the right-hand side of the key are unequal; otherwise, false.