ArrayList.Resize Method

Resizes an array. If the size is smaller than the current size, the array is truncated. If the size is larger than the current size, the data at the additional indexes will not be initialized.

void Resize(int newsize)

Parameters

int newsize

New size.