vote up 1 vote down star
1

Hi,

I want to compare just the date part (and Not the time) of two VB.NET Date objects. Is there a way to do that?

Hoping to get some answers.

/Ylva

flag

50% accept rate

3 Answers

vote up 12 vote down check

Just take the date part of each via the Date property and compare the two:

date1.Date.CompareTo(date2.Date)

Or:

If date1.Date < date2.Date Then
link|flag
You assume correctly. – Konrad Rudolph Mar 6 at 13:40
I'll remove the text about it then. Just for anyone following along, Konrad's comment made sense at the time :) – Jon Skeet Mar 6 at 13:44
+1, added a minor bit to the VB if/then syntax. – JaredPar Mar 6 at 14:12
Thanks Jared. When I answer VB questions there's almost always a bit of syntactic guesswork involved :) – Jon Skeet Mar 6 at 14:14
vote up 1 vote down

You could also use TimeSpan

Dim ts As TimeSpan
ts = dt1 - dt2

ts.Days will now have the difference of the two dates as whole days.

link|flag
vote up 2 vote down

Compare the DateTime.Date properties.

link|flag

Your Answer

Get an OpenID
or

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