ExtensionMethods.IsSignificantlyGreaterThan(Double, Double) Method

Definition

Indicates if value1 (this) is significantly greater than value2.

public:
[System::Runtime::CompilerServices::Extension]
 static bool IsSignificantlyGreaterThan(double value1, double value2);
public:
[System::Runtime::CompilerServices::Extension]
 static bool IsSignificantlyGreaterThan(double value1, double value2);
public static bool IsSignificantlyGreaterThan (this double value1, double value2);
static member IsSignificantlyGreaterThan : double * double -> bool
<Extension()>
Public Function IsSignificantlyGreaterThan (value1 As Double, value2 As Double) As Boolean

Parameters

value1
Double

Value to be compared.

value2
Double

Other double to be compared.

Returns

True if value1 is significantly greater than value2, False otherwise.

Applies to