NOMBRE
MES EN ESPAÑOL
Para
obtener el nombre corto del mes de una fecha en c# :
DateTime
fechaHoy = DateTime.Now;
var fecha = new DateTime(fechaHoy.Year, fechaHoy.Month,
fechaHoy.Day);
string nombreMes = fecha.ToString("MMM", CultureInfo.CreateSpecificCulture("es")).ToUpper();
Para
obtener el nombre completo del mes de una fecha en c# :
DateTime
fechaHoy = DateTime.Now;
var fecha = new DateTime(fechaHoy.Year, fechaHoy.Month,
fechaHoy.Day);
string nombreMes = fecha.ToString("MMMM", CultureInfo.CreateSpecificCulture("es")).ToUpper();
NOMBRE
MES EN INGLES
Para
obtener el nombre corto del mes de una fecha en c# :
DateTime
fechaHoy = DateTime.Now;
var fecha = new DateTime(fechaHoy.Year, fechaHoy.Month,
fechaHoy.Day);
string nombreMes = fecha.ToString("MMM", CultureInfo.InvariantCulture);
Para
obtener el nombre completo del mes de una fecha en c# :
DateTime
fechaHoy = DateTime.Now;
var fecha = new DateTime(fechaHoy.Year, fechaHoy.Month,
fechaHoy.Day);
string nombreMes = fecha.ToString("MMMM", CultureInfo.InvariantCulture);