Skip to main content

ChunkList<T>.RemoveAt(Int32) Method

Removes an item at the specified position from the collection.

Namespace: DevExpress.Xpf.ChunkList

Assembly: DevExpress.Xpf.Core.v23.2.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

public void RemoveAt(
    int index
)

Parameters

Name Type Description
index Int32

A zero-based integer specifying the index of the object to remove. If it’s negative or exceeds the number of elements, an exception is raised.

Remarks

When an item is removed from the collection, all subsequent fields are moved up one position within the chunk.

Use the ChunkList<T>.Clear method to clear the collection.

See Also