CircularListTSlice(Int32) Method

Gets a new CircularListT instance, which represents a subsection of the current instance with the specified start index.

Definition

Namespace: KGySoft.Collections
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
C#
public CircularList<T> Slice(
	int index
)

Parameters

index  Int32
The zero-based index at which the range starts.

Return Value

CircularListT
A shallow copy of a range of elements in the source CircularListT.

See Also