IntegrationServices.Key.Inequality 연산자

정의

지정한 두 키 개체의 값이 다른지 여부를 확인합니다.

오버로드

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

적용 대상