gpt4 book ai didi

C# 日期时间.ParseExact

转载 作者:IT王子 更新时间:2023-10-29 03:58:25 28 4
gpt4 key购买 nike

我有一个制表符分隔的文件,它正在被解析然后插入到数据库中。当我遇到日期列时,我无法解析它。

我的代码是:

var insert = DateTime.ParseExact(line[i], "d/M/yyyy h:mm", CultureInfo.InvariantCulture);

line[i] 中的字符串格式为:7/7/2011 10:48 , 10/20/2011 6:27

我得到的异常是

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

最佳答案

您的格式字符串有误。改成

insert = DateTime.ParseExact(line[i], "M/d/yyyy hh:mm", CultureInfo.InvariantCulture);

关于C# 日期时间.ParseExact,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8401605/

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