SByte.IComparisonOperators<SByte,SByte,Boolean>.LessThanOrEqual 运算符

定义

比较两个值以确定哪个值小于或等于。

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

参数

left
SByte

要与 right进行比较的值。

right
SByte

要与 left进行比较的值。

返回

如果 left 小于等于 right,则为 true;否则为 false

实现

适用于