Computer.Key.Inequality 运算符

定义

确定指定的对象键是否不等于第二个对象键。

重载

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

要比较的 Computer.Key

rightOperand
Computer.Key

要比较的第二个 Computer.Key

返回

一个 Boolean。如果两个操作数不相等,则为 true;否则为 false

适用于

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

要比较的 Computer.Key

obj
Object

要比较的 Object

返回

一个 Boolean。如果两个操作数不相等,则为 true;否则为 false

适用于

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

参数

obj
Object

要比较的 Object

rightOperand
Computer.Key

要比较的 Computer.Key

返回

一个 Boolean。如果两个操作数不相等,则为 true;否则为 false

适用于