Sorts jagged arrays of integers.

Namespace: TPSA
Assembly: TPSA (in TPSA.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static int[][] sort(
	ref int[][] r
)
Visual Basic
Public Shared Function sort ( _
	ByRef r As Integer()() _
) As Integer()()
Visual C++
public:
static array<array<int>^>^ sort(
	array<array<int>^>^% r
)

Parameters

r
Type: array<array<System..::..Int32>[]()[][]>[]()[][]%
The array to be sorted.

Return Value

The sorted array.

See Also