 | SpanTSlice(Int32, Int32) Method |
Forms a slice out of the current span starting at the specified index for the specified length.
Namespace: SystemAssembly: C2JBridge (in C2JBridge.dll) Version: 2.6.9.260611-9a148513a79c26cdd7f1dde468f4f9e06ef3bc7e
Syntaxpublic Span<T> Slice(
int start,
int length
)
Public Function Slice (
start As Integer,
length As Integer
) As Span(Of T)
Parameters
- start Int32
- The index at which to begin the slice.
- length Int32
- The desired length of the slice.
Return Value
SpanTA
SpanT of
length elements starting at
start.
Exceptions
See Also