Int32.IComparisonOperators<Int32,Int32,Boolean>.LessThan 運算子
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
比較兩個值,以判斷哪一個值較少。
static bool System.Numerics.IComparisonOperators<System.Int32,System.Int32,System.Boolean>.operator <(int left, int right) = System::Numerics::IComparisonOperators<int, int, bool>::op_LessThan;
static bool IComparisonOperators<int,int,bool>.operator < (int left, int right);
static member ( < ) : int * int -> bool
Shared Operator < (left As Integer, right As Integer) As Boolean Implements IComparisonOperators(Of Integer, Integer, Boolean).op_LessThan
參數
- left
- Int32
要與 right
比較的值。
- right
- Int32
要與 left
比較的值。
傳回
如果 left
小於 right
,則為 true
;否則為 false
。