Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Checks whether the two given recorded objects are 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
- left
Type: Microsoft.Reactive.Testing.Recorded<T>
First object to check for equality.
- right
Type: Microsoft.Reactive.Testing.Recorded<T>
Second object to check for equality.
Return Value
Type: System.Boolean
True if both objects are equal; otherwise, false.