Printing months in a year in C#

We can print the months of a year like below using MMMM format.

using System;

namespace forgetCode
{
    class Program
    {
        static void Main(string[] args)
        {
            DateTime now = DateTime.Today;
            for (int i = 0; i < 12; i++)
            {
                Console.WriteLine(now.ToString("MMMM"));
                now = now.AddMonths(1);
            }          
        }

    }
}


Output:
July
August
September
October
November
December
January
February
March
April
May
June

..