指定された 2 つの記録されたオブジェクトが等しくないかどうかを確認します。
Namespace:Microsoft.Reactive.Testing
アセンブリ: Microsoft.Reactive.Testing (Microsoft.Reactive.Testing.dll)
構文
'Declaration
Public Shared Operator <> ( _
left As Recorded(Of T), _
right As Recorded(Of T) _
) As Boolean
'Usage
Dim left As Recorded(Of T)
Dim right As Recorded(Of T)
Dim returnValue As Boolean
returnValue = (left <> right)
public static bool operator !=(
Recorded<T> left,
Recorded<T> right
)
public:
static bool operator !=(
Recorded<T> left,
Recorded<T> right
)
static let inline (<>)
left:Recorded<'T> *
right:Recorded<'T> : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
パラメーター
- left
種類: Microsoft.Reactive.Testing.Recorded<T>
等しいかどうかをチェックする最初のオブジェクト。
- right
種類: Microsoft.Reactive.Testing.Recorded<T>
等しいかどうかをチェックする 2 番目のオブジェクト。
戻り値
型: System.Boolean
両方のオブジェクトが等しくない場合は True。それ以外の場合は false。