UInt32.IComparisonOperators<UInt32,UInt32,Boolean>.LessThanOrEqual 運算子

定義

比較兩個值,以判斷哪一個值小於或相等。

 static bool System.Numerics.IComparisonOperators<System.UInt32,System.UInt32,System.Boolean>.operator <=(System::UInt32 left, System::UInt32 right) = System::Numerics::IComparisonOperators<System::UInt32, System::UInt32, bool>::op_LessThanOrEqual;
static bool IComparisonOperators<uint,uint,bool>.operator <= (uint left, uint right);
static member ( <= ) : uint32 * uint32 -> bool
 Shared Operator <= (left As UInteger, right As UInteger) As Boolean Implements IComparisonOperators(Of UInteger, UInteger, Boolean).op_LessThanOrEqual

參數

left
UInt32

要與 right 比較的值。

right
UInt32

要與 left 比較的值。

傳回

如果 left 小於或等於 right,則為 true;否則為 false

實作

適用於