How to iterate all items in a given row in the DataTable . I have the following code to iterate all rows, I want another For loop to iterate all ce
items
DataTable
You can use DataRow.ItemArray to do the job also
DataRow.ItemArray
the code would look something like this
For Each item As var In Row.ItemArray //do something Next