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

operator() public static method

Negates the complex number.
public static operator ( ) : Complex
return Complex
        public static Complex operator -(Complex a)
        {
            return Negate(a);
        }

Same methods

Complex::operator ( ) : bool