Round timespan seconds I also need do same with .Hours and .Minutes
This:
1.53994 second
to:
1 second
Round timespan seconds I also need do same with .Hours and .Minutes
This:
1.53994 second
to:
1 second
This code worked for me.
TimeSpan ts = TimeSpan.FromSeconds(1.54);
Math.Round(ts.TotalSeconds);