I have string like this "24:00:00" and I would like to convert it to time. I tried convert and DateTime.Parse but it seems like it needs a date too. Is there a way to just get time, or do I have to put in a date as well?
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.
|
|
If you are only interested in the time component, consider using
|
|||||
|
|
I am not sure "24:00:00" is going to be a valid time. Any how, you should not need to specify the date, you can do...
If your time is actually a time of the day, then I would suggest sticking with DateTime. If you are actually using an amount of time (i.e. can be more that 23:59:59) then you could use TimeSpan...
don't forget, both have a TryParseExact version if you are not sure you input will be valid |
||||
|
|
|
You can use DateTimeFormatInfo to format your DateTime.
|
|||
|
|
|
You can use timespan http://msdn.microsoft.com/en-us/library/system.timespan.aspx |
|||
|
|
|
How about
Hope this helps. |
|||
|
|