Reputation: 60751
how do i clear all elements in an arraylist?
Upvotes: 1
Views: 4029
Reputation: 8170
Dim myAL As New ArrayList()
myAl.Clear()
http://msdn.microsoft.com/en-us/library/system.collections.arraylist.clear.aspx
Also.. With respect to Joel's comment...
Upvotes: 1