Method AddRange
AddRange(DynamicArray<T>)
Adds the elements of the specified collection to the end of the DynamicArray.
Declaration
public void AddRange(DynamicArray<T> array)
Parameters
Type | Name | Description |
---|---|---|
DynamicArray<T> | array | The array whose elements should be added to the end of the DynamicArray. The array itself cannot be null, but it can contain elements that are null, if type T is a reference type. |