What is the recommended way of formatting TimeSpan objects into a string with a custom format?
|
|
|||
|
|
|
Please note: this answer is for .Net 4.0 and above. If you want to format a TimeSpan in .Net 3.5 or below please see JohannesH's answer. Custom TimeSpan format strings were introduced in .Net 4.0. You can find a full reference of available format specifiers at the MSDN Custom TimeSpan Format Strings page. Here's an example timespan format string:
You need to escape the ":" character with a "\" (which itself must be escaped unless you're using a verbatim string). This excerpt from the MSDN Custom TimeSpan Format Strings page explains about escaping the ":" and "." characters in a format string:
|
|||||||||||||||
|
|
For .NET 3.5 and lower you could use:
Code taken from a Jon Skeet answer on bytes For .NET 4.0 and above, see DoctaJonez answer. |
|||||||||||||||||||
|
|
One way is to create a
This is the way I know. I hope someone can suggest a better way. |
|||||||||
|
|
Simple. Use |
|||
|
It works for Framework 4 |
||||
|
|
|
This is awesome one:
|
||||
|
|
You can also go with:
EDIT: You can also look at Strings.Format.
|
||||
|
|
|
Maybe this helps ? .NET Format String 102: DateTime Format String |
|||||
|