Hi,
Say I convert some second into the TimeSpan object like this.
Dim sec= 1254234568
Dim t As TimeSpan = TimeSpan.FromSeconds(sec)
How to format TimeSpan object into a format like the following:
>105hr 56mn 47sec
Is there any built-in function? or I need to write a custom function.
Thanks.