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

定义

比较两个值以确定哪个值更少。

 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_LessThan;
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_LessThan

参数

left
SByte

要与 right进行比较的值。

right
SByte

要与 left进行比较的值。

返回

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

实现

适用于