Exemplo n.º 1
0
        static void Main(string[] args)
        {
            //IMyConsole console = new RealConsole();
            //var myClass = new MyClassToTest(console);
            //myClass.DoStuff();

            Box box = new Box();
            IProvideImperialSize imperialSize = box;

            imperialSize.Bounce();

            Console.ReadLine();
        }
Exemplo n.º 2
0
        public static string Bounce(this IProvideImperialSize box)
        {
            double howHigh = box.GetArea();

            return($"Wow {howHigh}");
        }