Un esempio di come creare un array bidimensionale in C#
C#
private string[,] str = null;

str = new string[,]{
		{"aaaa", "va"},
		{"bbb", "vb"},
		{"ccc", "vc"}
};
MessageBox.Show(str[1,0]);  // stampa bbb
Potrebbe interessarti anche: