Complex Constructor (Double, Double)

 

Initializes a new instance of the Complex structure using the specified real and imaginary values.

Namespace:   System.Numerics
Assembly:  System.Numerics (in System.Numerics.dll)

public:
Complex(
	double real,
	double imaginary
)

Parameters

real
Type: System::Double

The real part of the complex number.

imaginary
Type: System::Double

The imaginary part of the complex number.

The real or imaginary arguments may lose precision if they are data types that require an explicit cast to Double.

The following example instantiates two complex numbers, and then uses them in addition, subtraction, multiplication, and division operations.

No code example is currently available or this language may not be supported.

Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone
Available since 8.1
Return to top
Show: