I have a dynamic array which I resize as needed. The problem is when I want to resize it to nothing, that is, no elements in the array. I can't just use ReDim aArray(0), because that leaves one element in the array (because of Option Base 0). How can I redimension the array to be nothing?