roccorocks
Programmer
I want to convert System.DateTime.Now.DayOfWeek.ToString() into the integer value of the day of the week "1 - 7". Has anyone done this B4?
Thanks,
Rocco
Thanks,
Rocco
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
int dow = ((int)DateTime.Now.DayOfWeek) + 1;