2

I'm doing a basic 2D array in C# and I've got a bit of confusion.

I'm a lot more used to working with 1-based arrays, so 0-based arrays kind of mess up my head if you know what I mean.

blocks = new Block[15, 999];

for (int x = 0; x <= 15; x++)
{
    for (int y = 0; y <= 999; y++)
    {
        blocks[x, y] = new Dirt(terrainTexture, new Vector2(x * 16, y * 16));
    }
}

So it's telling me I'm out of bounds of the array?

If the array is from

0-15, 0-999

Shouldn't a loop from 0-15, 0-999 work?

0

2 Answers 2

10

It's not. 999 is the length of the array. Thusly, it's from 0-998, and when you loop over it, you should be in the habit of using "less than" rather than "less than or equal" -- then it will tend to come out right.

Sign up to request clarification or add additional context in comments.

1 Comment

Oh, so it's 15 elements rather than 0-15? Thanks, makes sense now.
7

You have 15 and 999 elements, but since arrays are 0-indexed, that means they run from 0-14 and 0-998, respectively.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.