NativeArray2D<T> Constructor

Constructs a new array.

Definition

Namespace: Extreme.Collections
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public NativeArray2D(
	IntPtr values,
	int offset,
	int leadingDimension
)

Parameters

values  IntPtr
The storage array.
offset  Int32
The offset of the first element in the storage array.
leadingDimension  Int32
The number of elements between the start of successive columns.

Remarks

The values array is re-used. Modifying elements in the 2D array will modify the elements in the original array. Conversely, if elements in the original array that correspond to elements in the 2D array are modified, the elements of the 2D array are modified as well.

See Also