❔ Grasshopper c#, this gives an error
I do not know how to explain, ask and I will answer :(
thanks in advance
thanks in advance




```cs
// KOD BURAYA
```
private void RunScript(int x, int y, ref object A)
{
int i, n;
string[,] harita = new string[x, y];
for (i = 0; i < x; i++);
{
for (n = 0; n < y; n++);
{
harita[i, n] = "b";
}
}
Print(harita);
} private void RunScript(int x, int y, ref object A)
{
int i, n;
string[,] harita = new string[x, y];
for (i = 0; i < x; i++);
{
for (n = 0; n < y; n++);
{
harita[i, n] = "b";
}
}
Print(harita);
}```cs
// KOD BURAYA
```