Recorded<T>.Inequality Operator

Checks whether the two given recorded objects are not equal.

Namespace:  Microsoft.Reactive.Testing
Assembly:  Microsoft.Reactive.Testing (in Microsoft.Reactive.Testing.dll)

Syntax

'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.

Parameters

Return Value

Type: System.Boolean
True if both objects are inequal; otherwise, false.

See Also

Reference

Recorded<T> Structure

Microsoft.Reactive.Testing Namespace