Get the name of the first day of the week in C#
The System.Globalization namespace's CultureInfo.CurrentCulture.DateTimeFormat.DayNames value is an array holding the names of the days of the week for the computer's locale. The first entry gives the name of the first day of the week.
lblResult.Text = "The first day of the week is " +
CultureInfo.CurrentCulture.DateTimeFormat.DayNames[0];



Comments