RobEmDee
Centurion
I have a situation in which I would like to dyamically populate an ArrayList and empty it frequently in an app I am developing. Does anyone have an opinion on the efficiency / resource effectiveness of doing this? Would it be better do Dim in a new ArrayList each time I do this (or Array because at the given point in time I would know the number of Items being populated) or simply empty and reuse the one I already have in memory? Thank you ahead of time for your response.