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
public IEnumerable Months { get { return Enumerable.Range(1, 12).Select(x => new SelectListItem { Value = x.ToString(), Text = DateTimeFormatInfo.CurrentInfo.GetMonthName(x) }); } }