How can I declare a two dimensional string array? - Stack Overflow string[][] Tablero = new string[3][3];. I need to have a 3x3 array arrangement to ... string[,] Tablero = new string[3,3];. You can also instantiate it in the same line with ...