Complex<T>.Deconstruct Method

Deconstructs a complex number into its real and complex parts.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public void Deconstruct(
	out T real,
	out T imaginary
)

Parameters

real  T
The real part.
imaginary  T
The imaginary part.

See Also