Reputation: 57
How can I format the Date and Time format to present 'YYYY-MM-DD-HHmmSSSSS'. Example 2014-02-05-091122589
Upvotes: 1
Views: 250
Reputation: 460138
Use fff
with DateTime.ParseExact
:
DateTime dtWithMillis = DateTime.ParseExact("2014-02-05-091122589", "yyyy-MM-dd-HHmmssfff", null);
The "fff" Custom Format Specifier
Upvotes: 1