Hello,
How can I convert the timespan 00:04:05.0750000 to 00:04:05? How can I remove the second fractions?
Thank you,
This article may help you:
http://msdn.microsoft.com/en-us/library/ee372286.aspx#Y0
ts = TimeSpan.FromSeconds(Math.Floor(ts.TotalSeconds))
Armin