Live Chat Icon For mobile
Live Chat Icon

How to convert milliseconds into time

Platform: ASP.NET| Category: Basic

VB.NET


dim ts as TimeSpan  = TimeSpan.FromMilliseconds(10000) 
Response.Write (ts.ToString () )

C#


TimeSpan ts = TimeSpan.FromMilliseconds(10000); 
Response.Write (ts.ToString () );

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.