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

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

    Try using safe TryParseExact method

    DateTime temp;
    string   date = "2011-29-01 12:00 am";
    
    DateTime.TryParseExact(date, "yyyy-dd-MM hh:mm tt", CultureInfo.InvariantCulture, DateTimeStyles.None, out temp);
    

提交回复
热议问题