String was not recognized as a valid DateTime

前端 未结 3 855
野趣味
野趣味 2020-12-21 18:02

I am converting the uk date format string to US format to save this into database but it throw me error \"String was not recognized as a valid DateTime.\"

st         


        
3条回答
  •  感动是毒
    2020-12-21 18:53

    You have specified the wrong format. It should be dd/MM/yyyy:

    var dateString = "13/06/2011";
    var aa = DateTime.ParseExact(dateString, "dd/MM/yyyy", CultureInfo.CurrentCulture);
    

提交回复
热议问题