|
-
Jul 15th, 2002, 05:06 PM
#1
Thread Starter
Junior Member
Redimensioning Arrays
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;
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|