I have two dates, one less than the other. I want to create a string such as this one
\"0 days, 0 hours, 23 minutes, 18 seconds\"
representing the differenc
TimeSpan diffTime = dateTimeNew -PreviousDate; int days=diffTime.Days; int hours=diffTime.Hours; int minutes=diffTime.Minutes; int seconds=diffTime.Seconds;