Beispiel #1
0
        public static void Special()
        {
            int     sum;
            int     total2;
            Durango dur = new Durango();

            dur.Boxer();

            total2 = dur.PerformAddition(20, 200);

            Console.WriteLine(total2);
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            Apprentice a = new Apprentice();

            a.Display();

            Console.ReadLine();

            Durango d = new Durango();
            int     total;
            int     sum;

            total = d.PerformAddition(5, 10);

            Console.WriteLine(total);
            Special();


            Console.ReadLine();
        }