get Month name from number C# .net
Solution :
int monthnumber=2;
string monthName=CultureInfo.CurrentCulture.DateTimeFormat.GetMonthName(monthnumber);

Comments

Popular posts from this blog