Ejemplo n.º 1
0
        public int Remainder(int a, int b)
        {
            if (Verbose)
            {
                Console.WriteLine("METHOD CALL  - DefaultCalculator.Remainder({0}, {1})", a, b);
            }

            return(Divider.Remainder(a, b));
        }