我正在开发 Windows 应用程序。
因为我有字符串格式的日期为>>fileDate="15/03/2013"
我希望它被转换为日期格式,因为我的数据库字段是datetime
.
我用了以下的东西>>
DateTime dt = DateTime.ParseExact(fileDate, "yyyyy-DD-MM", CultureInfo.InvariantCulture);
DateTime dt = DateTime.Parse(fileDate);
这两种方法都证明失败给我错误>>
String was not recognized as a valid DateTime.
什么是错误?
有没有另一种技术可以做到这一点?