C
Join ServerC#
help
✅ 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[]


AAngius12/8/2022
That's what the
.ToString()
for arrays defaults to, yesAAngius12/8/2022
You'd need to use
string.Join()
to turn an array into a stringIIdris20h12/8/2022
to make it easier im just using a string array now
IIdris20h12/8/2022

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!