gpt4 book ai didi

c# - 转换 DateTime 导致 IndexOutOfRangeException

转载 作者:行者123 更新时间:2023-11-30 19:47:42 25 4
gpt4 key购买 nike

Time =(DateTime) AllQuestionsPresented.TryParse(dr["Time"].ToString());

dr 是一个 SqlReader。

我得到一个 IndexOutOfRangeException 并且我不知道为什么。这是 TryParse 函数:

public static DateTime? TryParse(string text)
{
DateTime date;
if (DateTime.TryParse(text, out date))
{
return date;
}
else
{
return null;
}
}

我不明白为什么会出现该异常,我该如何摆脱它?!

最佳答案

这可能意味着它无法在阅读器中找到。 dr 是否有名称为“Time”的列?

关于c# - 转换 DateTime 导致 IndexOutOfRangeException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6292539/

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