For example, I'm using a global variable array. When I am done storing items, I no longer want them to exist in the global namespace. Currently I am freeing their data with the following code:
Code:
VarSetCapacity(array%i%, 0)
While this does get rid of the data they store, they still exist in the global namespace as is evident by the fact that when you go to "View variables and their contents", you still see them there. For example, you would see:
Code:
array1[0 of 0]:
array2[0 of 0]:
array3[0 of 0]:
array4[0 of 0]:
Which seems like it's just wasting space. Thanks for the help.