IntegrationServices.Key.Inequality 运算符
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定两个指定的键对象是否具有不同值。
重载
Inequality(IntegrationServices+Key, IntegrationServices+Key) |
指示两个指定的键对象是否具有使用指定的操作数的不同值。 |
Inequality(IntegrationServices+Key, Object) |
指示指定的对象和键的左侧是否不相等。 |
Inequality(Object, IntegrationServices+Key) |
指示指定的对象和键的右侧是否不相等。 |
Inequality(IntegrationServices+Key, IntegrationServices+Key)
指示两个指定的键对象是否具有使用指定的操作数的不同值。
public:
static bool operator !=(Microsoft::SqlServer::Management::IntegrationServices::IntegrationServices::Key ^ leftOperand, Microsoft::SqlServer::Management::IntegrationServices::IntegrationServices::Key ^ rightOperand);
public static bool operator != (Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key leftOperand, Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key rightOperand);
static member op_Inequality : Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key * Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key -> bool
Public Shared Operator != (leftOperand As IntegrationServices.Key, rightOperand As IntegrationServices.Key) As Boolean
参数
- leftOperand
- IntegrationServices.Key
一个 IntegrationServices.Key 对象,该对象表示要比较的键的左侧。
- rightOperand
- IntegrationServices.Key
一个 IntegrationServices.Key 对象,该对象表示要比较的键的右侧。
返回
如果两个指定的键对象使用指定的操作数具有不同的值,则为 true;否则为 false。
适用于
Inequality(IntegrationServices+Key, Object)
指示指定的对象和键的左侧是否不相等。
public:
static bool operator !=(Microsoft::SqlServer::Management::IntegrationServices::IntegrationServices::Key ^ leftOperand, System::Object ^ obj);
public static bool operator != (Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key leftOperand, object obj);
static member op_Inequality : Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key * obj -> bool
Public Shared Operator != (leftOperand As IntegrationServices.Key, obj As Object) As Boolean
参数
- leftOperand
- IntegrationServices.Key
一个 IntegrationServices.Key 对象,该对象表示要比较的键的左侧。
- obj
- Object
指定的对象。
返回
如果指定的对象和键左侧不相等,则为 true;否则为 false。
适用于
Inequality(Object, IntegrationServices+Key)
指示指定的对象和键的右侧是否不相等。
public:
static bool operator !=(System::Object ^ obj, Microsoft::SqlServer::Management::IntegrationServices::IntegrationServices::Key ^ rightOperand);
public static bool operator != (object obj, Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key rightOperand);
static member op_Inequality : obj * Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key -> bool
Public Shared Operator != (obj As Object, rightOperand As IntegrationServices.Key) As Boolean
参数
- obj
- Object
指定的对象。
- rightOperand
- IntegrationServices.Key
一个 IntegrationServices.Key 对象,该对象表示要比较的键的右侧。
返回
如果指定的对象和键右侧不相等,则为 true;否则为 false。