DateTime.TryParse issue with dates of yyyy-dd-MM format

前端 未结 7 2219
遇见更好的自我
遇见更好的自我 2020-12-08 12:54

I have the following date in string format \"2011-29-01 12:00 am\" . Now I am trying to convert that to datetime format with the following code:

DateTime.Try         


        
7条回答
  •  隐瞒了意图╮
    2020-12-08 13:08

    That works:

    DateTime dt = DateTime.ParseExact("2011-29-01 12:00 am", "yyyy-dd-MM hh:mm tt", System.Globalization.CultureInfo.InvariantCulture);
    

提交回复
热议问题