Get Month Name C# Month Name

 DateTime getMonth = new DateTime(DateTime.Now.Year, month, 1);

 string monthName = string.Empty; //getMonth.ToString("m");

 monthName = CultureInfo.CurrentCulture.DateTimeFormat.GetAbbreviatedMonthName(getMonth.Month);