Last active
September 10, 2019 21:38
-
-
Save ezirmusitua/98a35c3f7dd40683ffb63dca6229952c to your computer and use it in GitHub Desktop.
[Format time string] Format time string from milliseconds #C# #time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
string FormatTimeString(int ms) { | |
TimeSpan t = TimeSpan.FromMilliseconds(ms); | |
return $"{t.Hours:D2}h:{t.Minutes:D2}m:{t.Seconds:D2}s:{t.Milliseconds:D2}ms"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment