P Pete Z Sep 2, 2003 #1 Hello folks, How do I achieve this: redim preserve iaCount(2, iIndex) with C# please? Regards Pete
J Justin Rogers Sep 2, 2003 #2 You create a brand new array of the appropriate size and then copy the elements from the old array and release any pointers to the old array so that it gets GC'ed when it comes time.
You create a brand new array of the appropriate size and then copy the elements from the old array and release any pointers to the old array so that it gets GC'ed when it comes time.