Determines whether the specified Object is equal to this instance.

Namespace: Com.Tibco.As.Space
Assembly: TIBCO.ActiveSpaces.Common (in TIBCO.ActiveSpaces.Common.dll) Version: 2.0.0.0 (2.2.0.015)

Syntax

C#
public abstract bool Equals(
	Object obj
)
Visual Basic
Public MustOverride Function Equals ( 
	obj As Object
) As Boolean
Visual C++
public:
virtual bool Equals(
	Object^ obj
) abstract override
F#
override Equals : 
        obj : Object -> bool 

Parameters

obj
Type: System..::..Object
The Object to compare with this instance.

Return Value

Type: Boolean
true if the specified Object is equal to this instance; otherwise, false.

Exceptions

ExceptionCondition
System..::..NullReferenceException The obj parameter is null.

See Also