I have the following code:

Code:
 Dim aaa As New List(Of String())
 Dim dt as Datatable
How can I loop through the datatable and add into the list?Something like this:

Code:
aaa.add(new string() {Row1,Row2,Row3 etc})
The result should be in one row of the list only.