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

前端 未结 7 2143
遇见更好的自我
遇见更好的自我 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:15

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

提交回复
热议问题