| MathHelperIsEqual Method (Double, Double) | 
        
         
            Checks if a number is equal to another.
            
 
    Namespace: 
   DXFReaderNET
    Assembly:
   DXFReaderNET (in DXFReaderNET.dll) Version: 20.12.2
 Syntax
Syntaxpublic static bool IsEqual(
	double a,
	double b
)
Public Shared Function IsEqual ( 
	a As Double,
	b As Double
) As Boolean
public:
static bool IsEqual(
	double a, 
	double b
)
static member IsEqual : 
        a : float * 
        b : float -> bool 
 STATIC METHOD IsEqual(
	a AS REAL8,
	b AS REAL8
) AS LOGIC
Parameters
- a
- Type: SystemDouble
 Double precision number.
- b
- Type: SystemDouble
 Double precision number.
Return Value
Type: 
BooleanTrue if its close to one or false in any other case.
 See Also
See Also