At the moment I\'m creating a DateTime for each month and formatting it to only include the month. Is there another or any better way to do this?
DateTime
They're defined as an array in the Globalization namespaces.
using System.Globalization; for (int i = 0; i < 12; i++) { Console.WriteLine(CultureInfo.CurrentUICulture.DateTimeFormat.MonthNames[i]); }