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

Cast_BigInteger() private method

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