在下面的 if 语句中,我需要检查第一个表中的第一行/列是否包含字符串,但如果表没有行,则会出现异常。
例外是:
"System.IndexOutOfRangeException = {"位置 0 处没有行。"}"
代码片段:
'if the table has no rows then an exception happens here
If myDataSet.Tables(0).Rows(0)(0).ToString <> "MyMessage" then
'do this - redirect
Else
myDataSet.Tables(0).Rows(0)(0) = "no message"
End If
你能帮忙吗?