This code works fine:

var newArray = new Rectangle[newHeight, newWidth];

for (int x = 0; x < newWidth; x++)
    for (int y = 0; y < newHeight; y++)
        newArray[y, x] = (x >= width) || (y >= height) ? Rectangle.Empty : tiles[y, x];

But I am not having much luck replacing it with Array.Copy. Basically, if the resized array is larger it just adds blank rectangles to the edges. If it is smaller then it should just cut off the edges.

When doing this:

Array.Copy(tiles, newArray, newWidth * newHeight);

It messes up the array and all of its contents become disordered and do not retain their original index. Maybe I'm just having a brainfart or something?

link|improve this question
Works fine for me. – BrokenGlass Sep 1 '11 at 2:36
feedback

1 Answer

Yes. However, it doesn't work the way you are thinking it works. Rather, it thinks of each mutlidimensional array as a single-dimensional array (which is actually what they are in memory, it's just a trick that lets us place some structure on top of them to think of them as multidimensional) and then copies the single-dimensional structures. So if you have

1 2 3
4 5 6

and want to copy it into

x x x x
x x x x

then it will think of the first array as

1 2 3 4 5 6

and the second as

x x x x x x x x

and the result will be

1 2 3 4 5 6 x x

which will appear to you as

1 2 3 4
5 6 x x

Got it?

link|improve this answer
Whoa, thank you. I finally get how to use it. All this time I never thought it would work for multidimensional arrays – Martheen Sep 1 '11 at 2:45
I understand, but is there any way to fix it so that it works properly? – Andrew Godfrey Sep 1 '11 at 2:49
1  
I'm all for code reuse, but is there a specific reason that you want to replace your working 3 lines of code? – Paul Walls Sep 1 '11 at 2:59
@Andrew Godfrey: It is working properly; it's just not working the way that you think it should work. There is not a way to get it to work the way that you think it should work. Array.Copy is meant to be blazing fast, and that means taking advantage of the fact that copying linearly-contiguous chunks of memory is blazing fast. You're asking to copy in a way that isn't linearly-contiguous. Array.Copy wasn't meant for that job. You have to find something else that does that for you. In particular, the code you already wrote does exactly what you want. Use it. – Jason Sep 1 '11 at 3:05
Alright, thanks! I was just wondering because my program is done and I'm just refactoring right now to make it look pretty O_O – Andrew Godfrey Sep 1 '11 at 3:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.