How do I localize a DayOfWeek other than today?
The following works just fine for the current day:
DateTime.Now.ToString("dddd", new CultureInfo("it-IT"));
But how can I localize all days of the week??
Edit: A possible (and probably very, very wrong) solution I came up with could be to create DateTime
values for an entire week, and then use date.ToString("dddd", new CultureInfo("it-IT"));
on them, but that just seems wrong on so many levels.