Simple method for give the name of month
System.Globalization.DateTimeFormatInfo mfi =
new System.Globalization.DateTimeFormatInfo();
string strMonthName = mfi.GetMonthName(8).ToString();
All technologies, only pure source code
Simple method for give the name of month
System.Globalization.DateTimeFormatInfo mfi =
new System.Globalization.DateTimeFormatInfo();
string strMonthName = mfi.GetMonthName(8).ToString();