I'm using a Label to receive the time of a video. The time I get from the video is double
that comes in milliseconds, for example: 1555 = 1,555 sec.
When I convert to TimeSpan
the Label appears as follows:
The code I'm using is:
dt = TimeSpan.FromMilliseconds(Player.input.time);
Cronometro.Text = dt.ToString();
Those zeros that appear after the numbers should not be there. It was supposed to be 00: 00: 03.431 I use a Windows Form.