gpt4 book ai didi

c# - VB.Net "IsDBNull"的 C# 等效项是什么

转载 作者:行者123 更新时间:2023-12-02 00:42:15 28 4
gpt4 key购买 nike

在 VB.Net 中你可以这样写:

If Not IsDBNull(oCustomerNameDataRow(0)) Then
cbCustomerName.Items.Add(oCustomerNameDataRow(0).ToString
End If

C# 中 IsDBNull 方法的等效项是什么?

最佳答案

if (!DBNull.Value.Equals(oCustomerNameDataRow[0]))
{
//something
}

MSDN (DBNull.Value)

关于c# - VB.Net "IsDBNull"的 C# 等效项是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29369253/

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