0
Wts a jagged array ?how is it declared in C#
4 Antworten
+ 4
a jagged array is an array of arrays and it's declaration is as follows:
(type)[][] a = new (type)[][];
where (type) is to be replaced by the type you wish to use. also keep in mind that each sub-array has to be initialized.
0
can you elaborate please
0
0
thanks