Complex.op_Addition

operator +

Implements the operator +.

public static Complex operator +(Complex a, Complex b)
ParameterTypeDescription
aComplexThe a complex.
bComplexThe b complex.

Return Value

The result of the operator.

See Also


operator +

Implements the operator +.

public static Complex operator +(Complex a, double s)
ParameterTypeDescription
aComplexThe a complex.
sDoubleThe s value.

Return Value

The result of the operator.

See Also


operator +

Implements the operator +.

public static Complex operator +(double s, Complex a)
ParameterTypeDescription
sDoubleThe s value.
aComplexThe a complex.

Return Value

The result of the operator.

See Also