예제 #1
0
파일: Program.cs 프로젝트: Ramanrall/week5
        static void Main(string[] args)
        {
            // var a = new testquestion();
            // a.playingwithforloops();
            birthday_party peter = new birthday_party();

            peter.setupPartyList();
            peter.reverseprintPartyList();
            Console.WriteLine(peter.printPartyList());
            Console.WriteLine(peter.reverseprintPartyList());
        }
        static void Main(string[] args)
        {
            var a = new TestQuestion2();
            //a.PlayingWithForLoops();
            //Console.ReadLine();

            var b = new birthday_party();

            b.setupPartyList();
            Console.WriteLine(b.printPartyList());
            Console.WriteLine(b.printPartyList_reverse());
            Console.ReadLine();
        }