ReadOnlySlice<T>.

Skip(int) Method

Summary

Bypasses a specified number of elements in the slice and then returns the remaining elements.
Namespace
Avalonia.Utilities
Containing Type
ReadOnlySlice<T>

Syntax

public ReadOnlySlice<T> Skip(int length)

Parameters

Name Type Description
length int The number of elements to skip before returning the remaining elements.

Return Value

Type Description
ReadOnlySlice<T> A ReadOnlySlice<T> that contains the elements that occur after the specified index in this slice.