J
Jarry
I have two arrays to load, taking one line to an entry from two 770,000
line files: so I have two arrays of 770000. But this can take upwards
of 5 minutes, which is simply too long. I use a stream reader to
readline from the textfiles, using the syntax
For i = 1 to 770000
myArray(i) = myStreamReader.readLine()
Next
How can I speed this process up, but try to keep the arrays that size?
All ideas welcomed.
Thanks,
Jarry
line files: so I have two arrays of 770000. But this can take upwards
of 5 minutes, which is simply too long. I use a stream reader to
readline from the textfiles, using the syntax
For i = 1 to 770000
myArray(i) = myStreamReader.readLine()
Next
How can I speed this process up, but try to keep the arrays that size?
All ideas welcomed.
Thanks,
Jarry