How can I declare a two dimensional string array?

Viewed 268742
string[][] Tablero = new string[3][3];

I need to have a 3x3 array arrangement to save information to. How do I declare this in C#?

12 Answers
Related