gpt4 book ai didi

c# - 如何覆盖 default(int?) 以获得 NULL 而不是 0

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

我找到了 here方法:

public static T GetValue<T>(object value)
{
if (value == null || value == DBNull.Value)
return default(T);
else
return (T)value;
}

如果“value”为NULL,如何重写获取null?

最佳答案

您不需要重写它。您只需将其命名为:

GetValue<int?>(value);

关于c# - 如何覆盖 default(int?) 以获得 NULL 而不是 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6264909/

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