The properties of the ArrayList class are listed below. For a complete list of ArrayList class members, see the ArrayList Members topic.
Capacity | Gets or sets the number of elements that the ArrayList can contain. |
Count | Gets the number of elements that the ArrayList actually contains. |
IsReadOnly | Gets a value indicating whether the ArrayList is read-only. |
IsSynchronized | Gets a value indicating whether access to the ArrayList is synchronized (thread-safe). |
Item | Gets or sets the element at the specified index.
In C#, this member is the indexer for the ArrayList class. |
SyncRoot | Gets an object that can be used to synchronize access to the ArrayList. |