If I have created an array of types as follows:
If I have created instrances of the type and then re-dimension the array, will that automatically delete the previously created type instances (through garbage collection), or do I have to do it myself?
Type Meeting Field Leader$ Field Project_Number$ Field StartTime Field EndTime End Type ;now define an array of types Global storage.Meeting Dim All_Storage.Meeting((Slots * Year_Days * Room_Total)-1)
If I have created instrances of the type and then re-dimension the array, will that automatically delete the previously created type instances (through garbage collection), or do I have to do it myself?