hi all...

using VB6, you could use a system like this:

Dim SomeArray() as Long
Redim SomeArray(90) as long
Redim Preserve SomeArray(900) as long

and you'd be able to change the last dimension.

Technically this still works in VB.Net, but its excruciatingly slow!!! when timing, VB6 was almost 9x faster than VB.Net...

SO, I'm guessing - whats the ".Net way" of resizing/redimensioning arrays?

Jack;