get month name C code example
Example: month number to text in c#
//For short month names
string monthName = new DateTime(2010, 8, 1)
.ToString("MMM", CultureInfo.InvariantCulture);
//For long/full month names for spanish("es") culture
string fullMonthName = new DateTime(2015, i, 1).ToString("MMMM", CultureInfo.CreateSpecificCulture("es"));
//or
string monthName = CultureInfo.CurrentCulture.DateTimeFormat.GetMonthName(8);