I'm looking for a locale-aware way of acquiring a long date time without the weekday. Just such a beast exist?
Below is the code I use to get the long date format including the weekday:
DateTime time = ...
String formattedDate = time.ToLongDateString();
Edit
Examples of what I would like to see:
ToLongDateString() returns the following:
String formattedDate = DateTime.Now.Date.ToLongDateString().Replace(DateTime.Now.DayOfWeek.ToString()+ ", ", "")