Single.GreaterThan(Single, Single) 运算符

定义

返回一个值,该值指示指定的 Single 值是否大于另一个指定的 Single 值。

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

要比较的第二个值。

返回

Boolean

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

注解

GreaterThan方法为值定义大于运算符的运算 Single

适用于