ExtensionMethods.IsSignificantlyGreaterThan(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 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.