Posible duplicado:
¿Cómo obtener el MonthName en c #?
Usé la siguiente sintaxis de C # para obtener el nombre del mes del mes no, pero obtengo August
que solo quiero Aug
...
System.Globalization.DateTimeFormatInfo mfi = new
System.Globalization.DateTimeFormatInfo();
string strMonthName = mfi.GetMonthName(8).ToString();
Cualquier sugerencia...