Hello

I need to open a text file and take its contents to an array,how can I do that?

and how do I know how many rows and cols have the file?
this to make a couple of cicles and read 1 by 1 the cols and the rows

using C its something like this:

for(rows=0;array(rows)(0)!='\0';rows++)
for(cols=0;array(rows)(cols)!='\0';cols++)

but in VB?