Exemplo n.º 1
0
        public static BigInt operator >>(BigInt B, int ShiftValue)
        {
            BigInt BCopy = B.Clone();

            for (int i = 0; i < ShiftValue; i++)
            {
                BCopy.ShiftRigth();
            }

            return(BCopy);
        }