I use DateTime.Now.ToString(\"MMMM\") in order to get the current month\'s full name. It works well, but I get it in Hebrew. Is there an option to
DateTime.Now.ToString(\"MMMM\")
Use the overload that takes a IFormatProvider:
IFormatProvider
CultureInfo culture = new CultureInfo("en-GB"); DateTime.Now.ToString("MMMM", culture));
Source