Example #1
0
        static void Main(string[] args)
        {
            // calls start method of the Month class by creating an object of it.
            Months month = new Months();
            month.Start();

            Console.WriteLine("Press Enter to exit!");
            Console.ReadLine();
        }