Recorded<T>.Equals Method (Object)
Checks whether the given object is equal to the current instance.
Namespace: Microsoft.Reactive.Testing
Assembly: Microsoft.Reactive.Testing (in Microsoft.Reactive.Testing.dll)
Syntax
'Declaration
Public Overrides Function Equals ( _
obj As Object _
) As Boolean
'Usage
Dim instance As Recorded
Dim obj As Object
Dim returnValue As Boolean
returnValue = instance.Equals(obj)
public override bool Equals(
Object obj
)
public:
virtual bool Equals(
Object^ obj
) override
abstract Equals :
obj:Object -> bool
override Equals :
obj:Object -> bool
public override function Equals(
obj : Object
) : boolean
Parameters
- obj
Type: System.Object
Object to check for equality.
Return Value
Type: System.Boolean
True if both objects are equal; otherwise, false.
See Also
Reference
Microsoft.Reactive.Testing Namespace
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.
Implements
See Also
Reference
Microsoft.Reactive.Testing Namespace
Recorded<T>.Equals Method
Include Protected Members
Include Inherited Members
Checks whether the given object is equal to the current instance.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
NameDescriptionEquals(Object)Checks whether the given object is equal to the current instance. (Overrides ValueType.Equals(Object).)
Equals(Recorded