public void Zero()
 {
     Assert.ThrowsException <OverflowException>(() => {
         var value = BigUInteger.Zero;
         value     = BigUInteger.Decrement(value);
     });
 }
        public void Tow()
        {
            var value = new BigUInteger(new byte[] { 2 });

            value = BigUInteger.Decrement(value);
            ExecTest(value, new byte[] { 1 });
        }
        public void One()
        {
            var value = BigUInteger.One;

            value = BigUInteger.Decrement(value);
            ExecTest(value, new byte[] { 0 });
        }