CollectionBase Constructor (Int32)
.NET Framework (current version)
Initializes a new instance of the CollectionBase class with the specified capacity.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- capacity
-
Type:
System::Int32
The number of elements that the new list can initially store.
The capacity of a CollectionBase is the number of elements that the CollectionBase can hold. As elements are added to a CollectionBase, the capacity is automatically increased as required by reallocating the internal array.
If the size of the collection can be estimated, specifying the initial capacity eliminates the need to perform a number of resizing operations while adding elements to the CollectionBase.
This constructor is an O(n) operation, where n is capacity.
Universal Windows Platform
Available since 10
.NET Framework
Available since 2.0
Available since 10
.NET Framework
Available since 2.0
Show: