ArraySectionTSlice(Int32) Method

Gets a new ArraySectionT instance, which represents a subsection of the current instance with the specified startIndex.

Definition

Namespace: KGySoft.Collections
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 8.1.0
C#
public ArraySection<T> Slice(
	int startIndex
)

Parameters

startIndex  Int32
The offset that points to the first item of the returned section.

Return Value

ArraySectionT
The subsection of the current ArraySectionT instance with the specified startIndex.

See Also