TimeSpan timeSpan = new TimeSpan(124432492); // I am giving ticks here.
string duration = timeSpan.ToString("HH:mm:ss:fff");
Conversion gives
Input string was not in a correct format.
Something is not right and i can't see it.
Any ideas?
TimeSpan timeSpan = new TimeSpan(124432492); // I am giving ticks here.
string duration = timeSpan.ToString("HH:mm:ss:fff");
Conversion gives
Input string was not in a correct format.
Something is not right and i can't see it.
Any ideas?