Gets or sets the capacity of a SortedList object.
Documentation for this section has not yet been entered.
SortedList.Capacity is the number of elements that the SortedList object can store. SortedList.Count is the number of elements that are actually in the SortedList.
SortedList.Capacity is always greater than or equal to SortedList.Count. If SortedList.Count exceeds SortedList.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 SortedList.TrimToSize or by setting the SortedList.Capacity property explicitly. When the value of SortedList.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.