IsNull
BooleanisNull
= DataRow.IsNull(DataColumncol
) Boolean isNull = DataRow.IsNull(IntegercolumnIndex
) BooleanisNull
= DataRow.IsNull(StringcolumnName
) BooleanisNull
= DataRow.IsNull(DataColumncol
, DataRowVersiondrv
)
Returns a value indicating whether the specified column contains a
null
value. An optional argument allows the
DataRowVersion
of the column to be specified.
isNull
Returns a Boolean indicating the specified
DataColumn
contains a null
value.
col
The DataColumn
object tested for a
null
value.
columnIndex
The zero-based index of the DataColumn
tested for
a null
value.
columnName
The name of the DataColumn
tested for a
null
value.
drv
One of the DataRowVersion
enumeration values
described in Table 25-5.