public int CompareTo(
IndexCollection other
)Public Function CompareTo (
other As IndexCollection
) As Integerpublic:
virtual int CompareTo(
IndexCollection^ other
) sealedabstract CompareTo :
other : IndexCollection -> int
override CompareTo :
other : IndexCollection -> int | Value | Meaning |
|---|---|
| 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 other. |
IndexCollection instances are quasi-lexicographically ordered. This means that instances are firstly ordered by their Count, and then, within collections having the same length, by lexicographic order.
This also means that when tested for equality, IndexCollection instances are considered equal if and only if they have the same Count and, for each index position, indexes corresponding to such position are equal, too.