小编典典

如何在C#中比较DateTime?

c#

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

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

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

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


阅读 608

收藏
2020-05-19

共1个答案

小编典典

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
2020-05-19