vote up 1 vote down star

I need to create a midnight DateTime

I've just done this:

DateTime endTime = DateTime.Now;
endTime.Subtract(endTime.TimeOfDay);

Haven't test it yet, I'm assuming it works but is there a better/cleaner way?

flag

67% accept rate

4 Answers

vote up 13 vote down check

just use foo.Date, or DateTime.Today for today's date

link|flag
Thanks, I knew what I'd done was a nasty hack! – endian Oct 29 '08 at 9:33
vote up 1 vote down

DateTime.Today

link|flag
vote up 1 vote down

DateTime.Now.AddDays(1).Date

link|flag
vote up 1 vote down
DateTime endTime = DateTime.Now.Date;

Now endTime.TimeOfDay.ToString() returns "00:00:00"

link|flag

Your Answer

Get an OpenID
or

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