SByte.IComparisonOperators<SByte,SByte,Boolean>.GreaterThan 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
比较两个值以确定哪个值更大。
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_GreaterThan;
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_GreaterThan
参数
- left
- SByte
要与 right
进行比较的值。
- right
- SByte
要与 left
进行比较的值。
返回
如果 true
大于 left
,则为 right
;否则为 false
。