D DaveF Jan 31, 2005 #1 I have a dataset that I need to loop threw the rows of the table. What is the best way to do this?
J Jon Skeet [C# MVP] Jan 31, 2005 #4 DaveF said: I have a dataset that I need to loop threw the rows of the table. What is the best way to do this? Click to expand... Well, when you've found the right table, use foreach (DataRow row in dataTable.Rows) { .... }
DaveF said: I have a dataset that I need to loop threw the rows of the table. What is the best way to do this? Click to expand... Well, when you've found the right table, use foreach (DataRow row in dataTable.Rows) { .... }