ExtensionMethods.IsSignificantlyLessThan(Double, Double) Method

Definition

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

public:
[System::Runtime::CompilerServices::Extension]
 static bool IsSignificantlyLessThan(double value1, double value2);
public:
[System::Runtime::CompilerServices::Extension]
 static bool IsSignificantlyLessThan(double value1, double value2);
public static bool IsSignificantlyLessThan (this double value1, double value2);
static member IsSignificantlyLessThan : double * double -> bool
<Extension()>
Public Function IsSignificantlyLessThan (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 less than value2, False otherwise.

Applies to