System.Collections.ArrayList.Capacity Property

Gets or sets the number of elements that the ArrayList can contain.

Syntax

public virtual int Capacity { get; set; }

Value

A int that specifies the number of elements that the current instance is capable of storing.

Exceptions

TypeReason
ArgumentOutOfRangeException ArrayList.Capacity is set to a value that is less than the ArrayList.Count of the current instance.

Remarks

ArrayList.Capacity is the number of elements that the ArrayList can store. ArrayList.Count is the number of elements that are actually in the ArrayList.

ArrayList.Capacity is always greater than or equal to ArrayList.Count. If ArrayList.Count exceeds ArrayList.Capacity while adding elements, the capacity is automatically increased by reallocating the internal array before copying the old elements and adding the new elements.

The capacity can be decreased by calling ArrayList.TrimToSize or by setting the ArrayList.Capacity property explicitly. When the value of ArrayList.Capacity is set explicitly, the internal array is also reallocated to accommodate the specified capacity.

Retrieving the value of this property is an O(1) operation; setting the property is an O(n) operation, where n is the new capacity.

Requirements

Namespace: System.Collections
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0