Returns a 2D array with first element at the specified index and the specified leading dimension.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Array2D<T> AsArray2DFrom(
int index,
int leadingDimension
)
Public Function AsArray2DFrom (
index As Integer,
leadingDimension As Integer
) As Array2D(Of T)
public:
Array2D<T> AsArray2DFrom(
int index,
int leadingDimension
)
member AsArray2DFrom :
index : int *
leadingDimension : int -> Array2D<'T>
Parameters
- index
- Type: SystemInt32
The index of the first element in the 2D array. - leadingDimension
- Type: SystemInt32
The leading dimension of the 2D array.
Return Value
Type:
Array2DTA 2D array with offset pointing to the element at
index
in the array and the specified leading dimension.
Reference