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 "ffffd" in in a custom format string to get the short day name. For example.
DateTime.Now.ToString("ffffd");
As suggestby @Loudenvier in comments.