[ad_1]
public string Divide(uint Frames, uint FrameRate)
{
return TimeSpan.FromSeconds(Frames / FrameRate).ToString(@"dd\.hh\:mm\:ss") + ':' + (Frames % FrameRate);
}
[ad_2]
solved C# How to divide a number get the result in the format hh:mm:ss: