Compares the current object with another object of the same type.

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

Syntax

C#
public int CompareTo(
	Member other
)
Visual Basic
Public Function CompareTo ( _
	other As Member _
) As Integer
Visual C++
public:
virtual int CompareTo(
	Member^ other
) sealed

Parameters

other
Type: Com.Tibco.As.Space..::..Member
An object to compare with this object.

Return Value

A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has the following meanings:
  • Less than zero: This object is less than the other parameter.
  • Zero: This object is equal to other.
  • Greater than zero: This object is greater than the other parameter.

Implements

IComparable<(Of <(<'T>)>)>..::..CompareTo(T)

See Also