how do I clear the content of an Array

  • Thread starter Thread starter Jan
  • Start date Start date
Hi Jan,
There are a lot of arrays in vb.net with different method's to clear.
A fixed array you can clear wit redim by instance.
Cor
 
An array of the form Dim myThings() As Things is cleared using
myThings.Clear (). Same for Dim myThings As ArrayList = new ArrayList.
 
Back
Top