Creare un Array in C#
Un esempio di sintassi su come creare un Array in C#
C#
// array di stringhe
string[] str = new string[10];
str[1] = "AA";
str[1] = "BB";
...
// array bidimensionale (100 elementi)
string[,] str = new string[10,10];
str[0,1] = "sf";
// array inizializzato tramite i valori passati (4 elementi)
// attenzione alle parentesi graffe e non tonde
string[,] str = new string[,]{{"A","A0"},{"B","B0"}} ;
Debug.WriteLine(str[0,1]); // restituisce A0