AForge.Math.Complex.operator C# (CSharp) Method

operator() public static method

Tests whether two specified complex numbers are equal.
public static operator ( ) : bool
return bool
        public static bool operator ==(Complex u, Complex v)
        {
            return Equals(u, v);
        }

Same methods

Complex::operator ( ) : Complex