Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can get the difference between two dates, but I need to calculate how many hours are between now and 8 am the next day...

Anyone have an example?

Thanks!

share|improve this question

4 Answers

up vote 8 down vote accepted
var tomorrow8am = DateTime.Now.AddDays(1).Date.AddHours(8);
double totalHours = ( tomorrow8am - DateTime.Now).TotalHours;
share|improve this answer
This is really clear now Thanks! – the air is getting slippery Oct 16 '11 at 16:31
2  
Don't call DateTime.Now twice, there's a small risk of the first call being right before midnight, and the second right after. Instead, save DateTime.Now in a variable and use that in both calculations. – Ben Voigt Oct 16 '11 at 16:43
@BenVoigt you're right. – Hasan Khan Oct 16 '11 at 16:53

Did you try subracting two DateTimes and using the TimeSpan class?

share|improve this answer
var now = DateTime.Now;
double diffHours = 24 - (now - now.Date).TotalHours + 8;
share|improve this answer

How about something like this

var now = DateTime.Now();
var target = DateTime.Today.AddDays(1).AddHours(8);
var result = (target - now).Hour;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.