Skip to content

Instantly share code, notes, and snippets.

@portal7
Created October 20, 2016 15:36
Show Gist options
  • Save portal7/b34342390ba3e1a95f1415685dfafe9f to your computer and use it in GitHub Desktop.
Save portal7/b34342390ba3e1a95f1415685dfafe9f to your computer and use it in GitHub Desktop.
Month to String with Culture Spanish / Mes a partir de una Fecha en C# con cultura Español
public string MonthName(int month)
{
DateTimeFormatInfo dtinfo = new CultureInfo("es-ES", false).DateTimeFormat;
return dtinfo.GetMonthName(month);
}
// Use
DataTime fecha = Convert.ToDateTime("16/04/2010");
Console.WriteLine( MonthName(fecha.Month));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment