Erase
Erase ArrayVariable, [ArrayVariable], ...
Erases one or more array variables by clearing the contents. The dimensions remain the same.
Dim MyArray() As String = Split("Hello world", " ")
SendDebug MyArray(1)
Erase MyArray
SendDebug MyArray(1)
See also: