我遇到了一个烦人的问题。我有两个日期时间变量。雇佣日期和终止日期。我需要得到工作天数。终止日期 - 就业日期。我该怎么做呢?
DateTime empDate = int.Parse((employeeEmploy.ElementAt(i).dateofEmpl).GetValueOrDefault().ToString("yyyyMMdd"));
DateTime terminDate = int.Parse((employeeEmploy.ElementAt(i).terminDate ).GetValueOrDefault().ToString("yyyyMMdd"));
int? dWorked = terminDate - empDate;
我试过了,但没用