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
|
1
|
|
|
|
|
|
Just take the date part of each via the
Or:
|
||||||||
|
|
|
You could also use TimeSpan
ts.Days will now have the difference of the two dates as whole days. |
||
|
|
|
|
Compare the DateTime.Date properties. |
||
|
|