VirtualUser VerifyEQ Method (Double, Double, Double, Boolean)C# API
Verifies that two doubles are equal.

Namespace: Facilita.Fc.Runtime
Assembly: fc_clr (in fc_clr.dll) Version: 9.5.5.77
Syntax

public bool VerifyEQ(
	double arg1,
	double arg2,
	double delta,
	bool throwException
)

Parameters

arg1
Type: System Double
The 1st double.
arg2
Type: System Double
The 2nd double.
delta
Type: System Double
The maximum permitted difference between the two values.
throwException
Type: System Boolean
true if an FCException should be thrown if the doubles are not equal.

Return Value

true if the doubles are equal; otherwise, false.
See Also