complex in C#

In C#,the Complex type uses the Cartesian coordinate system (real, imaginary) when instantiating and manipulating complex numbers.
```
      // Create a complex number by calling its class constructor.
      Complex c1 = new Complex(12, 6);
      Console.WriteLine(c1);
```