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
day1= (int)ClockInfoFromSystem.DayOfWeek;