This topic has not yet been rated - Rate this topic

Complex.ImaginaryOne Field

Returns a new Complex instance with a real number equal to zero and an imaginary number equal to one.

Namespace:  System.Numerics
Assembly:  System.Numerics (in System.Numerics.dll)
public static readonly Complex ImaginaryOne

The following example instantiates a Complex value by using the ImaginaryOne property. It then compares this value to another value that is instantiated by calling the Complex constructor with a real part equal to zero and an imaginary part equal to one. As the output from the example shows, the two values are equal.


using System;
using System.Numerics;

public class Example
{
   public static void Main()
   {
      Complex value = Complex.ImaginaryOne;
      Console.WriteLine(value.ToString());

      // Instantiate a complex number with real part 0 and imaginary part 1.
      Complex value1 = new Complex(0, 1);
      Console.WriteLine(value.Equals(value1));
   }
}
// The example displays the following output:
//       (0, 1)
//       True


.NET Framework

Supported in: 4

.NET Framework Client Profile

Supported in: 4

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ