Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# How to convert Environment.TickCount into HH:mm:ss:ms

I'm trying to convert an int value Environment.TickCount into a format dd:HH:mm:ss:ms (days:hours:minutes:seconds:milliseconds)

Is there an easy way to do it or should I divide Environment.TickCount by 60 then by 3600 then by 216000, etc ?

like image 850
Fred Smith Avatar asked Jul 29 '13 12:07

Fred Smith


1 Answers

I'd use a TimeSpan structure and in particular the FromMilliseconds static method:

var timespan = TimeSpan.FromMilliseconds(Environment.TickCount);

then you have all the values you want and you can use the various ToString options as well, namely something like

timespan.ToString("dd:hh:mm:ss:ff")

Check out this article on MSDN for the custom TimeSpan string formats.

like image 138
Tim Avatar answered Sep 20 '22 23:09

Tim