I get \"Index was outside the bounds of the array\" on this line, what\'s wrong?
Kort[x, y] = Sort[x] + Valor[y] + \" \";
Below is the
in C# arrays are zero-based...
look at what Kevek answered you plus:
this:
for (this.x = 1; this.x <= 4; this.x++) { for (this.y = 1; this.y <= 13; this.y++) ...
should be:
for (this.x = 0; this.x < 4; this.x++) { for (this.y = 0; this.y < 13; this.y++) ...