IdKey.Equality 演算子

定義

2 つのキー オブジェクトが同一の値を持っているかどうかを判定します。

オーバーロード

Equality(IdKey, IdKey)

指定したオペランドを使用して、2 つのキー オブジェクトが同一の値を持っているかどうかを示します。

Equality(IdKey, Object)

指定したオブジェクトとキーの左辺が等しいかどうかを示します。

Equality(Object, IdKey)

指定したオブジェクトとキーの右辺が等しいかどうかを示します。

Equality(IdKey, IdKey)

指定したオペランドを使用して、2 つのキー オブジェクトが同一の値を持っているかどうかを示します。

public:
 static bool operator ==(Microsoft::SqlServer::Management::IntegrationServices::IdKey ^ leftOperand, Microsoft::SqlServer::Management::IntegrationServices::IdKey ^ rightOperand);
public static bool operator == (Microsoft.SqlServer.Management.IntegrationServices.IdKey leftOperand, Microsoft.SqlServer.Management.IntegrationServices.IdKey rightOperand);
static member ( = ) : Microsoft.SqlServer.Management.IntegrationServices.IdKey * Microsoft.SqlServer.Management.IntegrationServices.IdKey -> bool
Public Shared Operator == (leftOperand As IdKey, rightOperand As IdKey) As Boolean

パラメーター

leftOperand
IdKey

比較するキーの左辺を表す IdKey オブジェクト。

rightOperand
IdKey

比較するキーの右辺を表す IdKey オブジェクト。

戻り値

指定したオペランドを使用してキー オブジェクトの値が同じである場合は true。それ以外の場合は false。

適用対象

Equality(IdKey, Object)

指定したオブジェクトとキーの左辺が等しいかどうかを示します。

public:
 static bool operator ==(Microsoft::SqlServer::Management::IntegrationServices::IdKey ^ leftOperand, System::Object ^ obj);
public static bool operator == (Microsoft.SqlServer.Management.IntegrationServices.IdKey leftOperand, object obj);
static member ( = ) : Microsoft.SqlServer.Management.IntegrationServices.IdKey * obj -> bool
Public Shared Operator == (leftOperand As IdKey, obj As Object) As Boolean

パラメーター

leftOperand
IdKey

比較するキーの左辺を表す IdKey オブジェクト。

obj
Object

指定されたオブジェクト。

戻り値

指定したオブジェクトとキーの左側が等しい場合は true。それ以外の場合は false。

適用対象

Equality(Object, IdKey)

指定したオブジェクトとキーの右辺が等しいかどうかを示します。

public:
 static bool operator ==(System::Object ^ obj, Microsoft::SqlServer::Management::IntegrationServices::IdKey ^ rightOperand);
public static bool operator == (object obj, Microsoft.SqlServer.Management.IntegrationServices.IdKey rightOperand);
static member ( = ) : obj * Microsoft.SqlServer.Management.IntegrationServices.IdKey -> bool
Public Shared Operator == (obj As Object, rightOperand As IdKey) As Boolean

パラメーター

obj
Object

指定されたオブジェクト。

rightOperand
IdKey

比較するキーの右辺を表す IdKey オブジェクト。

戻り値

指定したオブジェクトとキーの右側が等しい場合は true。それ以外の場合は false。

適用対象