ArraryList
A .Net datatype designed to hold an array list of data.
Here’s an example of usage
1 | Dim myArray As New ArrayList |
You can sort items in the arraylist using the .Sort method.
If the array list is holding a Structure object then you need to implement the CompareTo interface.