protected int GetDuration(DateTime start, DateTime finish)
{
return (finish - start).Days;
}
直接相减得到的是时间间隔是TimeSpan
05-07 15:56