I have the following code:
How can I loop through the datatable and add into the list?Something like this:Code:Dim aaa As New List(Of String()) Dim dt as Datatable
The result should be in one row of the list only.Code:aaa.add(new string() {Row1,Row2,Row3 etc})




Reply With Quote