PooledList<T>.

Reverse(int, int) Method

Summary

Reverses the elements in a range of this list. Following a call to this method, an element in the range given by index and count which was previously located at index i will now be located at index index + (index + count - i - 1).
Namespace
Avalonia.Collections.Pooled
Containing Type
PooledList<T>

Syntax

public void Reverse(int index, int count)

Parameters

Name Type Description
index int
count int

Return Value

Type Description
void