I managed to create a list of individual dimensional arrays, but I can not understand the multilevel arraylist.
Here is what I am trying to do:
I have a database (mdb) with 5 columns that I want each row to be in a list of arrays.
In PHP, what I usually do is:
$ array [$ field1] = array ($ field2, $ field3, $ field4, $ field5);
How do I do the same in vb.net, so anytime I need to get an element for the specific to string1 that I could name?
For one dimension, I could do the following, but I cannot figure out how to add more fields to one line of the array:
Dim tmpArrayX As New ArrayList tmpArrayX.Add(field(0)) tmpArrayX.Add(field(1)) etc...
source share