System.Numerics.Tests.ComplexTests.Cast_BigInteger C# (CSharp) Méthode

Cast_BigInteger() private méthode

private Cast_BigInteger ( BigInteger value ) : void
value BigInteger
Résultat void
        public static void Cast_BigInteger(BigInteger value)
        {
            Complex complex = (Complex)value;
            VerifyRealImaginaryProperties(complex, (double)value, 0);
        }
ComplexTests