✅ I am trying to output a 2D array to a datagridview, but it is not outputting correctly

IIdris20h12/8/2022
It is saying System.Int32[]
ImageImage
AAngius12/8/2022
That's what the .ToString() for arrays defaults to, yes
AAngius12/8/2022
You'd need to use string.Join() to turn an array into a string
IIdris20h12/8/2022
to make it easier im just using a string array now
IIdris20h12/8/2022
Image
IIdris20h12/8/2022
but this error comes up
Ddeluvas191112/8/2022
because you used seat[x] instead seat[y] as indexer ^^
IIdris20h12/8/2022
it finally works thanks everyone!!
AAccord12/8/2022
Closed!