MatrixOpsSerialiseMatrixT Method |
Namespace: ANDREICSLIB.HelpersAssembly: ANDREICSLIB (in ANDREICSLIB.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static string SerialiseMatrix<T>(
T[][] matrix,
int width,
int height,
string rowsep = ",",
string linesep = ""
)
Public Shared Function SerialiseMatrix(Of T) (
matrix As T()(),
width As Integer,
height As Integer,
Optional rowsep As String = ",",
Optional linesep As String = ""
) As String
public:
generic<typename T>
static String^ SerialiseMatrix(
array<array<T>^>^ matrix,
int width,
int height,
String^ rowsep = L",",
String^ linesep = L""
)
static member SerialiseMatrix :
matrix : 'T[][] *
width : int *
height : int *
?rowsep : string *
?linesep : string
(* Defaults:
let _rowsep = defaultArg rowsep ","
let _linesep = defaultArg linesep ""
*)
-> string
Parameters
- matrix
- Type: T
- width
- Type: SystemInt32
- height
- Type: SystemInt32
- rowsep (Optional)
- Type: SystemString
- linesep (Optional)
- Type: SystemString
Type Parameters
- T
Return Value
Type:
String
See Also