How to convert milliseconds to human readable hours, minutes, seconds and milliseconds in C#

1 Answer

0 votes
using System;
 
class Program
{
    static void Main() {
        int ms = 317520;
        TimeSpan ts = TimeSpan.FromMilliseconds(ms);
        
        string result = string.Format("{0:D2}h:{1:D2}m:{2:D2}s:{3:D3}ms", 
                                ts.Hours, 
                                ts.Minutes, 
                                ts.Seconds, 
                                ts.Milliseconds);
         
        Console.WriteLine(result);
    }
}

 
 
/*
run:

00h:05m:17s:520ms
  
*/

 



answered Jun 26, 2024 by avibootz
...