Returns the product of this complex number and the specified complex number.
Namespace: Algs4NetAssembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic 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:
Complexthe complex number whose value is
(opand1 * opand2)
See Also