public int CompareTo(
Object obj
)
Public Function CompareTo (
obj As Object
) As Integer
public:
virtual int CompareTo(
Object^ obj
) sealed
abstract CompareTo :
obj : Object -> int
override CompareTo :
obj : Object -> int
Value | Meaning |
---|---|
Less than zero | This instance precedes obj in the sort order. |
Zero | This instance occurs in the same position in the sort order as obj. |
Greater than zero | This instance follows obj in the sort order. |
DoubleMatrixRow instances are quasi-lexicographically ordered. This means that instances are firstly ordered by their Length, and then, within rows having the same length, by lexicographic order.
This also means that when tested for equality, DoubleMatrixRow instances are considered equal if and only if they have the same Length and, for each column index, entries corresponding to such index are equal, too.
ArgumentException | obj is not the same type as this instance. |