I have the code:
DateTime.Now.DayOfWeek.ToString()
That give's me the english day of the week name, I want to have the german version, how to add CultureInfo here to get the german day of the week name?
var culture = new System.Globalization.CultureInfo("de-DE");
var day = culture.DateTimeFormat.GetDayName(DateTime.Today.DayOfWeek);