Пример #1
0
        public void AndNotTest()
        {
            BigInt a = new BigInt(121);
            BigInt b = new BigInt(27);
            BigInt e = new BigInt(96);

            Assert.AreEqual(e, a.AndNot(b));
        }