Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Disclosure: My content contains affiliate links.

43,239 questions

56,142 answers

573 users

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
...