Click or drag to resize

MultiStepMethodBaseNewJaggedArrayT Method

Creates a new jagged array.

Namespace: Altaxo.Calc.Ode
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static T[][] NewJaggedArray<T>(
	int i,
	int k
)
where T : struct, new()

Parameters

i  Int32
First dimension of the array (spine dimension).
k  Int32
Second dimension of the array.

Type Parameters

T
Type of the element.

Return Value

T
The newly created jagged array.
See Also