我需要将两个日期之间的天数计算为整数值,到目前为止我已经尝试了以下方法:
int Days = Convert.ToInt32(CurrentDate.Subtract(DateTime.Now));
int Days = Convert.ToInt32((CurrentDate - DateTime.Now).Days);
但是,这两种说法都没有给我正确的输出。第一个是给我错误 Unable to cast object of type 'System.TimeSpan' to type 'System.IConvertible'。第二个是给Days
0。