PooledList<T>.

AddRange(IEnumerable<T>) Method

Summary

Adds the elements of the given collection to the end of this list. If required, the capacity of the list is increased to twice the previous capacity or the new size, whichever is larger.
Namespace
Avalonia.Collections.Pooled
Containing Type
PooledList<T>

Syntax

public void AddRange(IEnumerable<T> collection)

Parameters

Name Type Description
collection IEnumerable<T>

Return Value

Type Description
void