ArrayList UML Diagram

To Examples

Abbreviated UML Diagram for
the C# Class ArrayList

 

In addition to the properties and method shown below, the ArrayList collection has an indexer to obtain items in the collection. If col is the collection, then col[i] returns the ith item in the collection, where indices are zero-based.

Namespace: System.Collections

ArrayList

+ Count : int  

+ ArrayList( )
+ Add(object)
+ Insert(int, object) 
+ RemoveAt(int)