Howdy
I have a timespan that contain in excess of 24 hours. For the example lets use a value of 1 day 6 hours and 32 minutes.
I would like to get this into a string that displays "30:32".
Have so far tried something along the lines of string.Format("{0}:{1}", TimeSpan.TotalHours, TimeSpan.Minutes)
however this gives me a scenario where it'll display 13:0 rather than 13:00 which I also failed to resolve.