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 testques2();
            //a.Play();
            birthday_party b = new birthday_party();

            b.setupPartyList();
            b.printPartyList();
            b.printPartyListreverse();
            Console.WriteLine(b.printPartyList());
            Console.WriteLine(b.printPartyListreverse());
        }