Exemplo n.º 1
0
        public static BigInt operator -(BigInt B, ulong Number)
        {
            BigInt B1 = B.Clone();

            B1.SubCell2(0, Number);
            return(B1);
        }