Exemple #1
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();
        }