hola buenas; tengo un problema con una matriz de datos que al quererla pintar mediante un drawstring en un panel no me acaba de funcionar correctamente. os copio parte del codigo para ver si veis el error. Gracias por vuestra atención.
int x;
int y;
int p=0;
int s=0;
String drawString = tablero[p, s];
Font drawFont = new Font("Arial", 16);
SolidBrush drawBrush = new SolidBrush(Color.Black);
for (x = -33; x < 259; x++)
{
x = x + 33;
for (y = -33; y < 259; y++)
{
y = y + 33;
drawString = tablero[p, s];
G.DrawString(drawString, drawFont, drawBrush, x, y);
} p++;
s++;
}