Is there some inbuilt function to return weekdayname based on value 1-7?
/M
|
|
|
System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.DayNames |
|||||||||
|
|
for integers from 1 to 7, you'll need to subtract 1 as the array is zero-indexed.
This will give localised weekday names based on the current culture. |
|||
|
|