gpt4 book ai didi

c# - 不能隐式转换类型 System.DateTime?到 System.DateTime

转载 作者:太空狗 更新时间:2023-10-29 20:45:05 25 4
gpt4 key购买 nike

当我执行以下操作时,我得到:

    inv.RSV = pid.RSVDate

我得到以下信息:无法隐式转换类型 System.DateTime?到 System.DateTime。

在这种情况下,inv.RSV 是 DateTime 而 pid.RSVDate 是 DateTime?

我尝试了以下但没有成功:

 if (pid.RSVDate != null)
{

inv.RSV = pid.RSVDate != null ? pid.RSVDate : (DateTime?)null;
}

如果 pid.RSVDate 为空,我喜欢不给 inv.RSV 分配任何东西,在这种情况下它将为空。

最佳答案

日期时间不能为空。它的默认值为 DateTime.MinValue

你要做的是:

if (pid.RSVDate.HasValue)
{
inv.RSV = pid.RSVDate.Value;
}

或者,更简洁:

inv.RSV = pid.RSVDate ?? DateTime.MinValue;

关于c# - 不能隐式转换类型 System.DateTime?到 System.DateTime,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8389316/

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