user3274252
user3274252

Reputation: 57

Date Time formatting with milliseconds

How can I format the Date and Time format to present 'YYYY-MM-DD-HHmmSSSSS'. Example 2014-02-05-091122589

Upvotes: 1

Views: 250

Answers (1)

Tim Schmelter
Tim Schmelter

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

Related Questions