What is the proper way to get the complete name of month of a DateTime object? e.g. January, December.
DateTime
January
December
I am currently usi
You can use Culture to get month name for your country like:
System.Globalization.CultureInfo culture = new System.Globalization.CultureInfo("ar-EG"); string FormatDate = DateTime.Now.ToString("ffffdd., MMM dd yyyy, hh:MM tt", culture);