ArraySlice<T>.CloneData Method

Returns an array slice over a copy of the values in the current slice.

Definition

Namespace: Numerics.NET.Collections
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public ArraySlice<T> CloneData(
	int length
)

Parameters

length  Int32
The number of elements in the new array slice.

Return Value

ArraySlice<T>
An array slice with unit stride that references the first length elements of this array slice.

Implements

IStorageSlice<T, TSelf>.CloneData(Int32)

See Also