ExtensionMethods.IsSignificantlyLessThan(Double, Double) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.