PooledList<T>.

Add(T) Method

Summary

Adds the given object to the end of this list. The size of the list is increased by one. If required, the capacity of the list is doubled before adding the new element.
Namespace
Avalonia.Collections.Pooled
Containing Type
PooledList<T>

Syntax

[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Add(T item)

Attributes

Type Description
MethodImplAttribute

Parameters

Name Type Description
item T

Return Value

Type Description
void