I was simply trying to use the DateTime structure to transform an integer between 1 and 12 into an abbrieviated month name.
DateTime
Here is what I tried:
CultureInfo.CurrentCulture.DateTimeFormat.GetMonthName(1);
See Here for more details.
Or
DateTime dt = DateTime.Now; Console.WriteLine( dt.ToString( "MMMM" ) );
Or if you want to get the culture-specific abbreviated name.
GetAbbreviatedMonthName(1);
Reference