Computer.Key.Inequality 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
判断指定的对象键是否等于第二个对象键。
重载
| 名称 | 说明 |
|---|---|
| Inequality(Computer+Key, Computer+Key) |
判断指定的对象键是否等于第二个对象键。 |
| Inequality(Computer+Key, Object) |
确定指定的对象键是否等于该对象。 |
| Inequality(Object, Computer+Key) |
判断指定的对象是否等于对象键。 |
Inequality(Computer+Key, Computer+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
参数
- leftOperand
- Computer.Key
要比较的 A Computer.Key 。
- rightOperand
- Computer.Key
一秒钟 Computer.Key 来对比。
返回
Boolean A,如果两个操作数不相等,则false为true。
适用于
Inequality(Computer+Key, 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
参数
- leftOperand
- Computer.Key
要比较的 A Computer.Key 。
返回
Boolean A,如果两个操作数不相等,则false为true。
适用于
Inequality(Object, Computer+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
参数
- rightOperand
- Computer.Key
要比较的 A Computer.Key 。
返回
Boolean A,如果两个操作数不相等,则false为true。