Recorded<T>.Equals Method (Recorded<T>)
Checks whether the given recorded object is equal to the current instance.
Namespace: Microsoft.Reactive.Testing
Assembly: Microsoft.Reactive.Testing (in Microsoft.Reactive.Testing.dll)
Syntax
'Declaration
Public Function Equals ( _
other As Recorded(Of T) _
) As Boolean
'Usage
Dim instance As Recorded
Dim other As Recorded(Of T)
Dim returnValue As Boolean
returnValue = instance.Equals(other)
public bool Equals(
Recorded<T> other
)
public:
virtual bool Equals(
Recorded<T> other
) sealed
abstract Equals :
other:Recorded<'T> -> bool
override Equals :
other:Recorded<'T> -> bool
public final function Equals(
other : Recorded<T>
) : boolean
Parameters
- other
Type: Microsoft.Reactive.Testing.Recorded<T>
Recorded object to check for equality.
Return Value
Type: System.Boolean
True if both objects are equal; otherwise, false.