ValueTuple.CompareTo(ValueTuple) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
比較目前的 ValueTuple 執行個體與指定的 ValueTuple 執行個體。
public:
virtual int CompareTo(ValueTuple other);
public int CompareTo (ValueTuple other);
abstract member CompareTo : ValueTuple -> int
override this.CompareTo : ValueTuple -> int
Public Function CompareTo (other As ValueTuple) As Integer
參數
- other
- ValueTuple
要與目前執行個體比較的物件。
傳回
這個方法一律會傳回 0。
實作
例外狀況
other
不是 ValueTuple 執行個體。
備註
Because a ValueTuple instance has no elements, any two ValueTuple instances are considered to be equivalent.