Can you round a .NET TimeSpan object?
I have a Timespan value of:
00:00:00.6193789
Is there a simple way to keep it a TimeSpan object but round it to something like
00:00:00.61 ?
|
2
|
|||
|
|
|
TimeSpan is little more than a wrapper around the 'Ticks' member. It's pretty easy to create a new TimeSpan from a rounded version of another TimeSpan's Ticks.
Gives:
|
||
|
|
|
|
||
|
|
|
Not sure about TimeSpan, but you might check this post on DateTimes: |
||
|
|