Meta.Numerics Library
Equality Operator
Meta.NumericsMeta.NumericsComplexEquality(Complex, Complex)
Tests the equality of two complex numbers.
Declaration Syntax
C#Visual BasicVisual C++F#
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
)
static let inline(=)
        z1:Complex * 
        z2:Complex  : bool
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.