简体   繁体   中英

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

Use fff with DateTime.ParseExact :

DateTime dtWithMillis = DateTime.ParseExact("2014-02-05-091122589", "yyyy-MM-dd-HHmmssfff", null);

The "fff" Custom Format Specifier

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM