|  | cArrayList ClassThis class implements a fast index-based Collection for managing Objects;when accessing Items by Index this class is 100x faster than a standard VB6 Collection
Properties 
	| Name | Type | Description |  
| Count | (Long) | Returns the number of items in the ArrayList |  
| Exists | (Boolean) | Checks if the specified index exists |  
| Item | (Object) | Gets or sets the Item at the specified Index |  
Methods 
	| Name | Type | Description |  
| Add |  | Adds a specified Object instance to the ArrayList |  
| Clear |  | Deletes all elements from the ArrayList |  
| Remove |  | Removes the element at the specified position |  
| Swap |  | Swap elements at specified indexes |  |