Firstly, arrays as you describe them are not "dynamic" - the VB.NET "Redim"
keyword simply creates a new array and copies the contents to it.
When an array goes out of scope, it is marked for garbage collection, so you
do not need to do anything.
Peter
> Do you have to manually release memory allocated by creating a dynamic
> array using ReDim? In other words, if I have the following code:
[quoted text clipped - 8 lines]
> Thanks,
> Dave