Get Month name from month number

Simple method for give the name of month

System.Globalization.DateTimeFormatInfo mfi = 
new System.Globalization.DateTimeFormatInfo();
string strMonthName = mfi.GetMonthName(8).ToString();
Uncategorized

Related posts

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.