Span<T>.Slice Method

Definition

Overloads

Slice(Int32)

Forms a slice out of the current span that begins at a specified index.

Slice(Int32, Int32)

Forms a slice out of the current span starting at a specified index for a specified length.

Slice(Int32)

Source:
Span.cs
Source:
Span.cs
Source:
Span.cs

Forms a slice out of the current span that begins at a specified index.

C#
public Span<T> Slice(int start);

Parameters

start
Int32

The zero-based index at which to begin the slice.

Returns

A span that consists of all elements of the current span from start to the end of the span.

Exceptions

start is less than zero or greater than Length.

Applies to

.NET 10 and other versions
Product Versions
.NET Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Standard 2.0 (package-provided), 2.1

Slice(Int32, Int32)

Source:
Span.cs
Source:
Span.cs
Source:
Span.cs

Forms a slice out of the current span starting at a specified index for a specified length.

C#
public Span<T> Slice(int start, int length);

Parameters

start
Int32

The zero-based index at which to begin this slice.

length
Int32

The desired length for the slice.

Returns

A span that consists of length elements from the current span starting at start.

Exceptions

start or start + length is less than zero or greater than Length.

Applies to

.NET 10 and other versions
Product Versions
.NET Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Standard 2.0 (package-provided), 2.1