DateTime _startTime = Convert.ToDateTime(starttime);
DateTime _endtime = Convert.ToDateTime( endtime);
TimeSpan tStart = new TimeSpan(_startTime.Ticks);
TimeSpan tOrderUsed;
TimeSpan tEnd = new TimeSpan(_endtime.Ticks);
tOrderUsed = tEnd.Subtract(tStart).Duration();
int usedays = tOrderUsed.Days;
.NET日期计算
最新推荐文章于 2019-09-03 09:53:18 发布