Array1D<T>.AsArray2DFrom Method

Returns a 2D array with first element at the specified index and the specified leading dimension.

Definition

Namespace: Extreme.Collections
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Array2D<T> AsArray2DFrom(
	int index,
	int leadingDimension
)

Parameters

index  Int32
The index of the first element in the 2D array.
leadingDimension  Int32
The leading dimension of the 2D array.

Return Value

Array2D<T>
A 2D array with offset pointing to the element at index in the array and the specified leading dimension.

See Also