PooledList<T>.

Insert(int, T) Method

Summary

Inserts an element into this list at a given index. The size of the list is increased by one. If required, the capacity of the list is doubled before inserting the new element.
Namespace
Avalonia.Collections.Pooled
Containing Type
PooledList<T>

Syntax

public void Insert(int index, T item)

Parameters

Name Type Description
index int
item T

Return Value

Type Description
void