Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

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);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #month #number #text
ADD COMMENT
Topic
Name
2+9 =