System.Numerics.Tests.ComplexTests.ImaginaryOne C# (CSharp) Method

ImaginaryOne() private method

private ImaginaryOne ( ) : void
return void
        public static void ImaginaryOne()
        {
            VerifyRealImaginaryProperties(Complex.ImaginaryOne, 0, 1);
            VerifyMagnitudePhaseProperties(Complex.ImaginaryOne, 1, Math.PI / 2);
        }
ComplexTests