Click or drag to resize

SpanT(T, Int32, Int32) Constructor

Creates a new SpanT that includes a specified number of elements of an array starting at a specified index.

Namespace: System
Assembly: C2JBridge (in C2JBridge.dll) Version: 2.6.9.260611-9a148513a79c26cdd7f1dde468f4f9e06ef3bc7e
Syntax
public Span(
	T[] array,
	int start,
	int length
)

Parameters

array  T
The target array.
start  Int32
The index at which to begin the span.
length  Int32
The number of elements to include in the span.
Exceptions
ExceptionCondition
ArgumentOutOfRangeException Thrown when start or length is out of range.
See Also