ComplexAddition(Double, Complex) Operator
            Computes the sum of a real and a complex number.
            
Namespace: Meta.NumericsAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public static Complex operator +(
	double a,
	Complex z
)
Public Shared Operator + ( 
	a As Double,
	z As Complex
) As Complex
public:
static Complex operator +(
	double a, 
	Complex z
)
static let inline (+)
        a : float * 
        z : Complex  : Complex
- a  Double
 - The real number.
 - z  Complex
 - The complex number.
 
ComplexThe sum a + z.