vote up 3 vote down star
2

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 ?

flag

68% accept rate
Just a warning to others. I was going down the road of using TimeSpan as a public property off of a business object. Didn't realize that TimeSpan was not a "XmlSerializable" data type. Discussion on the issue: devnewsgroups.net/group/… – B. Tyndall Dec 4 '08 at 0:14

3 Answers

vote up 12 vote down check

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.

TimeSpan t1 = new TimeSpan(2345678);
Console.WriteLine(t1);
TimeSpan t2 = new TimeSpan(t1.Ticks - (t1.Ticks % 100000));
Console.WriteLine(t2);

Gives:

00:00:00.2345678
00:00:00.2300000
link|flag
That is slick. Thanks. – B. Tyndall Dec 3 '08 at 21:50
vote up 1 vote down
new TimeSpan(tmspan.Hours, tmspan.Minutes, tmspan.Seconds, (int)Math.Round(Convert.ToDouble(tmspan.Milliseconds / 10)));
link|flag
This is what I do. There really should be an easier way, that doesn't involve messing with ticks directly – rotard Dec 3 '08 at 21:39
vote up 0 vote down

Not sure about TimeSpan, but you might check this post on DateTimes:
http://mikeinmadison.wordpress.com/2008/03/12/datetimeround/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.