IVector<TValue>.reserve(Int32) Method

Definition

Reserves storage to ensure the minimum growth capacity for the container.

public:
 void reserve(int _Capacity);
public void reserve (int _Capacity);
abstract member reserve : int -> unit
Public Sub reserve (_Capacity As Integer)

Parameters

_Capacity
Int32

The new minimum capacity of the container.

Remarks

For more information, see vector::reserve (STL/CLR).

Applies to