Returns an array slice starting at the specified index.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public ArraySlice<T> From(
int index
)
Public Function From (
index As Integer
) As ArraySlice(Of T)
public:
ArraySlice<T> From(
int index
)
member From :
index : int -> ArraySlice<'T>
Parameters
- index
- Type: SystemInt32
The zero-based index of the first element in the new array slice.
Return Value
Type:
ArraySliceTAn array slice whose first element is at position
index.
Reference