Skip to content

Instantly share code, notes, and snippets.

@ezirmusitua
Last active September 10, 2019 21:38
Show Gist options
  • Save ezirmusitua/98a35c3f7dd40683ffb63dca6229952c to your computer and use it in GitHub Desktop.
Save ezirmusitua/98a35c3f7dd40683ffb63dca6229952c to your computer and use it in GitHub Desktop.
[Format time string] Format time string from milliseconds #C# #time
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