Print to console the specified matrix.

Namespace: Tsp
Assembly: Tsp (in Tsp.exe) Versión: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static void Print(
	int[,] mat
)
Visual Basic
Public Shared Sub Print ( _
	mat As Integer(,) _
)
Visual C++
public:
static void Print(
	array<int,2>^ mat
)

Parameters

mat
Type: array<System..::..Int32,2>[,](,)[,][,]
The matrix to be printed.

See Also