ValueTuple<T1>.CompareTo(ValueTuple<T1>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
比較目前的 ValueTuple<T1> 執行個體與指定的 ValueTuple<T1> 執行個體。
public:
virtual int CompareTo(ValueTuple<T1> other);
public int CompareTo ((T1) other);
abstract member CompareTo : ValueTuple<'T1> -> int
override this.CompareTo : ValueTuple<'T1> -> int
Public Function CompareTo (other As ValueTuple(Of T1)) As Integer
參數
- other
- ValueTuple<T1>
要與此執行個體相比較的元組。
傳回
帶正負號的整數,可指出此執行個體以及排序次序中 other
的相對位置,如下表所示。
值 | 描述 |
---|---|
負整數 | 這個執行個體位於 other 之前。
|
零 | 這個執行個體和 other 的排序位置相同。
|
正整數 | 這個執行個體位於 other 之後。
|