Complex.ImaginaryOne Alan
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Sıfıra eşit gerçek sayı ve bire eşit sanal bir sayı içeren yeni Complex bir örnek döndürür.
public: static initonly System::Numerics::Complex ImaginaryOne;
public static readonly System.Numerics.Complex ImaginaryOne;
staticval mutable ImaginaryOne : System.Numerics.Complex
Public Shared ReadOnly ImaginaryOne As Complex
Alan Değeri
Örnekler
Aşağıdaki örnek, özelliğini kullanarak bir Complex değerin örneğini oluşturur ImaginaryOne . Daha sonra bu değeri sıfıra eşit gerçek bir parça ve bire eşit bir hayali parça ile oluşturucu çağrılarak Complex örneklenmiş başka bir değerle karşılaştırır. Örnekteki çıktıda gösterildiği gibi iki değer eşittir.
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
open System.Numerics
let value = Complex.ImaginaryOne
printfn $"{value}"
// Instantiate a complex number with real part 0 and imaginary part 1.
let value1 = Complex(0., 1.)
printfn $"{value.Equals value1}"
// The example displays the following output:
// (0, 1)
// True
Imports System.Numerics
Module Example
Public Sub Main()
Dim value As Complex = Complex.ImaginaryOne
Console.WriteLine(value.ToString())
' Instantiate a complex number with real part 0 and imaginary part 1.
Dim value1 As New Complex(0, 1)
Console.WriteLine(value.Equals(value1))
End Sub
End Module
' The example displays the following output:
' (0, 1)
' True