How could I access this type of arraylist?
List<String[]> arraylist1= new List<String[]>;
String[] splits = Str.Split(';');
The question is, how can I get the information for the second position in the array?
_____________________
|List<String[]> |
|____________________|
|[0] |
|____________________|
| [0]"Juan" |
| [1]"Garcia" |
| [2]"Lorca" |
|____________________|
|[1] |
|____________________|
| [0]"Pepe" |
| [1]"Apellido" |
| [2]"Apellido2" |
| |
|____________________|
As a simple example, let's say that later I want to do something of the type:
Console.Write(Arraylist1[0][1]);