How do I get the day of a week in integer format? I know ToString will return only a string.
DateTime ClockInfoFromSystem = DateTime.Now; int day1; string d
Use
day1 = (int)ClockInfoFromSystem.DayOfWeek;