I receive imports from an external source where the timespan fields are stored in seconds. To convert these to a timespan I currently do this
TimeSpan.FromSeconds(140520)
This results in a timespan that displays 1 15:02:00
What I would like is that it displays 39:02:00
How can I do this ?