Is datarow empty?

I have this code, which is used to extract a single datarow from a table. How can I determine whether the datarow is empty (that is, if the filter variable does not exist in the table?)

tia

MyDataRow = DataSet1.Tables("MyTable").Select("MyFilter")

[362 byte] By [cstrader] at [2007-12-22]
# 1

Dim MyDatarow() As DataRow

MyDataRow = DataSet1.Tables("MyTable").Select("MyFilter")

If MyDataRow.Length > 0 Then

End If

DMan1 at 2007-8-30 > top of Msdn Tech,Visual Basic,Visual Basic IDE...