Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for a solution in .net 3.5 I wrote the following working solution:

private string FormatTimeSpan(TimeSpan time)
{
    return String.Format("{0}{1:00}:{2:00}", time < TimeSpan.Zero ? "-" : "", Math.Abs(time.Minutes), Math.Abs(time.Seconds));
}

But my Question is: Is there a better way? Maybe something shorter where I do not need an helper function.

share|improve this question

1 Answer

up vote 4 down vote accepted

Somewhat shorter, using Custom TimeSpan Format Strings:

private string FormatTimeSpan(TimeSpan time)
{
    return ((time < TimeSpan.Zero) ? "-" : "") + time.ToString(@"mm\:ss");
}
share|improve this answer
Shouldn't the negative sign appear automatically from the time.ToString() ? – Tisho Jun 13 '12 at 22:43
@Tisho - It doesn't, not with a custom format string. And there is no custom format specifier for it. – Oded Jun 13 '12 at 22:45
Oh, right. It works only for "c", "g".. Thanks. – Tisho Jun 13 '12 at 22:49
I'm nur sure but does time.ToString(@"mm\:ss") work for .net 3.5? – Tarion Jun 14 '12 at 13:25
Just got the idea to implement it as Extension that will make the functionality available all over my program. – Tarion Jun 14 '12 at 13:26
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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