Answers for "c# convert seconds to hours minutes seconds"

C#
1

c# convert seconds to hours minutes seconds

TimeSpan t = TimeSpan.FromSeconds( secs );

string answer = string.Format("{0:D2}h:{1:D2}m:{2:D2}s:{3:D3}ms", 
                t.Hours, 
                t.Minutes, 
                t.Seconds, 
                t.Milliseconds);
Posted by: Guest on April-12-2021

Code answers related to "c# convert seconds to hours minutes seconds"

C# Answers by Framework

Browse Popular Code Answers by Language