Condition.Key.Inequality 演算子 (Condition.Key, Condition.Key)
ブール等価演算を実行し、2 つの条件キーが同じ条件を参照しているかどうかを確認します。
名前空間: Microsoft.SqlServer.Management.Dmf
アセンブリ: Microsoft.SqlServer.Dmf (Microsoft.SqlServer.Dmf.dll)
構文
'宣言
Public Shared Operator <> ( _
leftOperand As Condition.Key, _
rightOperand As Condition.Key _
) As Boolean
'使用
Dim leftOperand As Condition.Key
Dim rightOperand As Condition.Key
Dim returnValue As Boolean
returnValue = (leftOperand <> rightOperand)
public static bool operator !=(
Condition.Key leftOperand,
Condition.Key rightOperand
)
public:
static bool operator !=(
Condition.Key^ leftOperand,
Condition.Key^ rightOperand
)
static let inline(<>)
leftOperand:Condition.Key *
rightOperand:Condition.Key : bool
JScript はオーバーロードされた演算子の使用をサポートしていますが、新規の宣言はサポートしていません。
パラメーター
- leftOperand
型: Microsoft.SqlServer.Management.Dmf.Condition.Key
比較する一方の条件キーを表す Condition.Key オブジェクトです。
- rightOperand
型: Microsoft.SqlServer.Management.Dmf.Condition.Key
比較する他方の条件を表す Condition.Key オブジェクトです。
戻り値
型: System.Boolean
2 つの条件キーが等しいかどうかを指定する Boolean 値です。2 つのパラメーターが別の条件を参照している場合、またはパラメーターの一方のみが NULL の場合、True を返します。それ以外の場合は、False を返します。