DateTime startBooking = ... DateTime vacated = DateTime.Now; TimeSpan roomHeldFor = vacated - startBooking; int heldTime = (int) roomHeldFor.TotalMinutes; Console.WriteLine(heldTime > (25 * 60) ? "Two days" : "One day");
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)