Exemplo n.º 1
0
        public void TestWithUnlimitedExponents()
        {
            var pc = new EContext(0, ERounding.HalfUp, 0, 5, true);

            Assert.IsTrue(pc.HasExponentRange);
            pc = pc.WithUnlimitedExponents();
            Assert.IsFalse(pc.HasExponentRange);
        }