Monday, October 20, 2008

Getting the current day of the week in string format

This is how you get the current day of the week in a string format in csharp. Example... Monday, Tuesday, etc.....

string dayoftheweek = DateTime.Today.DayOfWeek.ToString();

No comments: