I was wondering on how to write a method that will return me a string which will contain the short day name, example:
public static string GetShortDayName(Da
You can use DateTimeFormatInfo.AbbreviatedDayNames. For example:
string[] names = culture.DateTimeFormat.AbbreviatedDayNames; string monday = names[(int) DayOfWeek.Monday];