Can you round a .NET TimeSpan object?
TimeSpan
I have a Timespan value of: 00:00:00.6193789
Timespan
Is there a simple way to keep it a TimeSp
TimeSp
new TimeSpan(tmspan.Hours, tmspan.Minutes, tmspan.Seconds, (int)Math.Round(Convert.ToDouble(tmspan.Milliseconds / 10)));