标签: c#
我从数据库中获取日期,并想检查它是否等于特定日期。我可以这样做吗。
我试过了
if (date == 01:01:0001) { } else { }
干杯
答案 0 :(得分:3)
if (date == new DateTime(2001, 12, 5)) { ... }