Unit.Equals Method
Include Protected Members
Include Inherited Members
Check equality between the current unit and the other objects.
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)Indicates whether the current unit is equal to the specified object. (Overrides ValueType.Equals(Object).)
Equals(Unit)Indicates whether the current unit is equal to the specified unit.Top
See Also
Reference
Unit.Equals Method (Object)
Indicates whether the current unit is equal to the specified object.
Namespace: System.Reactive
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public Overrides Function Equals ( _
obj As Object _
) As Boolean
'Usage
Dim instance As Unit
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
The object to check equality with the current unit.
Return Value
Type: System.Boolean
true if the current unit is equal to the specified object; otherwise, false.
See Also
Reference
Unit.Equals Method (Unit)
Indicates whether the current unit is equal to the specified unit.
Namespace: System.Reactive
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public Function Equals ( _
other As Unit _
) As Boolean
'Usage
Dim instance As Unit
Dim other As Unit
Dim returnValue As Boolean
returnValue = instance.Equals(other)
public bool Equals(
Unit other
)
public:
virtual bool Equals(
Unit other
) sealed
abstract Equals :
other:Unit -> bool
override Equals :
other:Unit -> bool
public final function Equals(
other : Unit
) : boolean
Parameters
- other
Type: System.Reactive.Unit
The other unit to check equality with the current unit.
Return Value
Type: System.Boolean
Always returns true.