我想问我如何包含我得到的错误“对象引用未设置为对象的实例。”,nullreferenceException。我试图将从gridview获得的值分配给一个变量。我在第一行得到错误。当值为 null 时,我该如何处理。我尝试使用 isnot Nothing 但它仍然给我错误,并且 isdbnull 不会工作,因为我没有处理数据表。
当gridview仍然为空时,我只会收到此错误,我该如何处理。
If Not IsNothing(ProductsRawMaterialGrid.GridViewElement.CurrentRow.Cells("PercentageInMix").Value) Then
PIM = ProductsRawMaterialGrid.GridViewElement.CurrentRow.Cells("PercentageInMix").Value
Else
PIM = FormatNumber("0.00", 2)
End If