如何在C#中比较DateTime?

我不希望用户提供回溯日期或时间。

如何比较输入的日期和时间是否少于当前时间?

如果当前日期和时间是2010年6月17日下午12:25,我希望用户不能提供2010年6月17日之前的日期和下午12:25之前的时间。

就像我的函数一样,如果用户输入的时间是2010年6月16日且时间是12:24,则返回false

回答:

MSDN:DateTime.Compare

DateTime date1 = new DateTime(2009, 8, 1, 0, 0, 0);

DateTime date2 = new DateTime(2009, 8, 1, 12, 0, 0);

int result = DateTime.Compare(date1, date2);

string relationship;

if (result < 0)

relationship = "is earlier than";

else if (result == 0)

relationship = "is the same time as";

else

relationship = "is later than";

Console.WriteLine("{0} {1} {2}", date1, relationship, date2);

// The example displays the following output:

// 8/1/2009 12:00:00 AM is earlier than 8/1/2009 12:00:00 PM

以上是 如何在C#中比较DateTime? 的全部内容, 来源链接: utcz.com/qa/417350.html

回到顶部