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.
DateTime d = DateTime.Now;
d.AddHours(#);
d.AddMinutes(#);
DateTime supplied = someArbitraryValue;
int hours = hoursEntered;
int minutes = minutesEntered;
DateTime newWithTime = new DateTime(supplied.Year, supplied.Month, supplied.Day, hours, minutes, 0);