无法将字符串识别为有效的DateTime,日期格式-MM / DD / YYYY

时间:2018-08-30 15:52:11

标签: c# datetime

我无法将字符串转换为日期时间。

采样日期:08/29/2018

错误

  

System.FormatException:'字符串未被识别为有效的DateTime。'   enter image description here

代码:

public ViewResult readings(string FromDate, string ToDate)
{
    DateTime fromdate = Convert.ToDateTime(FromDate);

    return View(Fp);
}

0 个答案:

没有答案