在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的C#等效项是什么 "IsDBNull",我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29369253/

10-09 18:26