How to check if 20 minutes have passed from current date?
For example:
var start = DateTime.Now;
var oldDate = \"08/10/2011 23:50:31\";
if(start ?
You can now compare your start time to the current UTC time using:
start.AddMinutes(20) > DateTime.UtcNow
This approach means that you will get the correct answer around daylight savings time changes.
By adding time to the start time instead of subtracting and comparing the total time on a TimeSpan you have a more readable syntax AND you can handle more date difference cases, e.g. 1 month from the start, 2 weeks from the start, ...