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입니다.

반환

두 피연산자가 같지 않으면 true이고, 같으면 falseBoolean입니다.

적용 대상

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입니다.

반환

두 피연산자가 같지 않으면 true이고, 같으면 falseBoolean입니다.

적용 대상

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입니다.

반환

두 피연산자가 같지 않으면 true이고, 같으면 falseBoolean입니다.

적용 대상