Single.GreaterThan(Single, Single) 运算符
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
public:
static bool operator >(float left, float right);
public static bool operator > (float left, float right);
static member ( > ) : single * single -> bool
Public Shared Operator > (left As Single, right As Single) As Boolean
参数
- left
- Single
要比较的第一个值。
- right
- Single
要比较的第二个值。
返回
如果 true
大于 left
,则为 right
;否则为 false
。
注解
GreaterThan方法为值定义大于运算符的运算 Single 。