Constructs a new array.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public NativeArray2D(
IntPtr values,
int offset,
int leadingDimension
)
Public Sub New (
values As IntPtr,
offset As Integer,
leadingDimension As Integer
)
public:
NativeArray2D(
IntPtr values,
int offset,
int leadingDimension
)
new :
values : IntPtr *
offset : int *
leadingDimension : int -> NativeArray2D
Parameters
- values
- Type: SystemIntPtr
The storage array. - offset
- Type: SystemInt32
The offset of the first element in the storage array. - leadingDimension
- Type: SystemInt32
The number of elements between the start of successive columns.
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.
Reference