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\")
Pass in the culture in which you want the name formatted. Like this:
DateTime.Now.ToString("MMMM", new CultureInfo("en-GB"));