I am using Humanizer on a TimeSpan with precision 4:
(dateEnd - dateStart).Humanize(4)
And it generates something like this:
2 hours, 17 minutes, 20 seconds, 141 milliseconds
But when the time remaining is just minutes (less than a hour left) it generates:
17 minutes, 20 seconds, 141 milliseconds, no time
Is there a way to not include this "no time"?