Click or drag to resize
ComplexAddition Operator
Returns the sum of this complex number and the specified complex number.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public static Complex operator +(
	Complex opand1,
	Complex opand2
)

Parameters

opand1
Type: Algs4NetComplex
the first complex number
opand2
Type: Algs4NetComplex
the second complex number

Return Value

Type: Complex
the complex number whose value is (opand1 + opand2)
See Also