I have a problem with following code in vb.net
For Each Row As DataRow In DataTable
If Row("FieldName") = vbNull Then
MsgBox(...)
End If
Next Row
A message error appears telling me that "=" can't be used with vbNull, I searched for a solution without any luck, any help? I just need to make something if some cell in some Row in Datatable is Null