Beispiel #1
0
        public void Arithmetic_shift()
        {
            UInt256 a = UInt256.Zero;

            UInt256.ArithmeticRightShift(ref a, 1);
            Assert.AreEqual(UInt256.Zero, a);
        }