gpt4 book ai didi

c# - DateTime.ParseExact 失败

转载 作者:太空狗 更新时间:2023-10-30 00:52:51 25 4
gpt4 key购买 nike

以下行抛出 FormatException。

DateTime dateResult;
System.Globalization.CultureInfo provider = System.Globalization.CultureInfo.InvariantCulture;
string dateFormat = "yyyy-MM-dd HH:mm";
string dateToCheck = "2013-20-10 00:00";

dateResult = DateTime.ParseExact(dateToCheck, dateFormat, provider); // fails

它说

The DateTime represented by the string is not supported in calendar System.Globalization.GregorianCalendar.

我看不出有什么问题。

最佳答案

月份好像是20,没有第20个月。正如评论所暗示的那样,您可能混淆了日期和月份。

字符串应该是:

string dateToCheck = "2013-10-20 00:00";

关于c# - DateTime.ParseExact 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19494520/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com