System.Numerics.Tests.cast_fromTest.VerifyDecimalExplicitCastFromBigInteger C# (CSharp) Method

VerifyDecimalExplicitCastFromBigInteger() private static method

private static VerifyDecimalExplicitCastFromBigInteger ( Decimal value ) : void
value Decimal
return void
        private static void VerifyDecimalExplicitCastFromBigInteger(Decimal value)
        {
            BigInteger bigInteger = new BigInteger(value);
            VerifyDecimalExplicitCastFromBigInteger(value, bigInteger);
        }
        private static void VerifyDecimalExplicitCastFromBigInteger(Decimal value, BigInteger bigInteger)

Same methods

cast_fromTest::VerifyDecimalExplicitCastFromBigInteger ( Decimal value, BigInteger bigInteger ) : void