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.0.0.0 (2.4.0.001)

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
F#
abstract CompareTo : 
        other : Member -> int 
override CompareTo : 
        other : Member -> int 

Parameters

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

Return Value

Type: Int32
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