SequenceRangeCompareTo Method (ISequenceRange) |
Compares two sequence ranges.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public int CompareTo(
ISequenceRange other
)
Public Function CompareTo (
other As ISequenceRange
) As Integer
public:
virtual int CompareTo(
ISequenceRange^ other
) sealed
abstract CompareTo :
other : ISequenceRange -> int
override CompareTo :
other : ISequenceRange -> int
Parameters
- other
- Type: BioISequenceRange
SequenceRange instance to compare.
Return Value
Type:
Int32
If the Start values of the two ranges are identical then the
result of this comparison is the result from calling CompareTo() on
the two End values. If the Start values are not equal then the result
of this comparison is the result of calling CompareTo() on the two
Start values.
Implements
IComparableTCompareTo(T)See Also