Tests the equality of two complex numbers.

Namespace:  Meta.Numerics
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static bool operator ==(
	Complex z1,
	Complex z2
)
Public Shared Operator = ( _
	z1 As Complex, _
	z2 As Complex _
) As Boolean
public:
static bool operator ==(
	Complex z1, 
	Complex z2
)

Parameters

z1
Complex
The first complex number.
z2
Complex
The second complex number.

Return Value

True if the two complex numbers are equal, otherwise false.

See Also