DateTime.Parse date format

前端 未结 3 766
孤城傲影
孤城傲影 2021-01-11 12:30

I have a date represented as a string thus

20130116154407

I called DateTime.Parse on this but it failed. How can I convert this to a DateT

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-11 13:15

    You need to specify a format:

    DateTime.ParseExact(str, "yyyyMMddHHmmss", CultureInfo.InvariantCulture)
    

提交回复
热议问题