✅ I am trying to output a 2D array to a datagridview, but it is not outputting correctly
It is saying System.Int32[]
7 Replies
That's what the
.ToString()
for arrays defaults to, yes
You'd need to use string.Join()
to turn an array into a stringto make it easier im just using a string array now
but this error comes up
because you used seat[x] instead seat[y] as indexer ^^
it finally works thanks everyone!!
Closed!