Double.GreaterThan(Double, Double) 演算子
定義
public:
static bool operator >(double left, double right);
public static bool operator > (double left, double right);
static member ( > ) : double * double -> bool
Public Shared Operator > (left As Double, right As Double) As Boolean
パラメーター
- left
- Double
比較する最初の値です。The first value to compare.
- right
- Double
比較する 2 番目の値です。The second value to compare.
戻り値
left
が right
より大きい場合は true
。それ以外の場合は false
。true
if left
is greater than right
; otherwise, false
.
注釈
メソッドは、 GreaterThan 値に対して大なり演算子の演算を定義し Double ます。The GreaterThan method defines the operation of the greater-than operator for Double values.