Hi,
string[,] a = new string[3,2];
string[] b = a[0]; // error, wrong number of indices (expects 2)
I don't want to retrieve the separate values.
I want to retrieve the arrays. How do you retrieve the first array (b) from the rectangular array (a)?
--Glen
Memoria mihi benigna erit qui eam perscribam
string[,] a = new string[3,2];
string[] b = a[0]; // error, wrong number of indices (expects 2)
I don't want to retrieve the separate values.
I want to retrieve the arrays. How do you retrieve the first array (b) from the rectangular array (a)?
--Glen
Memoria mihi benigna erit qui eam perscribam