我正在使用DataRow数组迭代DataTable的选定行(基于某些条件)。当我尝试将数组的一行(使用索引)传递给期望DataRow的Method时,我得到错误"类型的值' System.Data.DataTable'无法转换为System.Data.DataRow'。这是我的代码:
Dim InvRow() as DataRow = DS.Tables("Invs").Select([criteria])
For I As Integer = 0 to InvRow.Count - 1
GetCommData(InvRow(I))
'The above function "GetCommData" is expecting a DataRow, and this is
'where I get the error.
Next
如何将每个选定的行发送到方法?
拉里