如何只比较日期部分而不是两个日期的时间?

问题描述:

我只想比较两个VB.NET Date对象的日期部分(而不是时间)。
有办法吗?

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?

只需通过 Date 属性并比较两者:

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

date1.Date.CompareTo(date2.Date)

或:

If date1.Date < date2.Date Then