Display MonthName from the integer value
//Include this namespace
using System.Globalization;
int i=1;
// The below line displays January
CultureInfo.CurrentCulture.DateTimeFormat.GetMonthName(1);
using System.Globalization;
int i=1;
// The below line displays January
CultureInfo.CurrentCulture.DateTimeFormat.GetMonthName(1);
Labels: Display MonthName from the integer value, Getting MonthName inputting integer value, How to find a monthname from the integer value, Monthname from integer value