Used to release array variables and deallocate the memory used for their elements.
Erase arraylist
The Erase statement can appear only at procedure level. This means you can release arrays inside a procedure but not at class or module level.
The Erase statement is equivalent to assigning Nothing to each array variable.
This example uses the Erase statement to clear two arrays and free their memory (1000 and 100 storage elements respectively). The ReDim statement then assigns a new array instance to the three-dimensional array.
Dim Int3DArray(9, 9, 9), Int2DArray(9, 9) As Integer
' ...
Erase
Int3DArray, Int2DArray
' ...
ReDim Int3DArray(4, 4, 9)