How do Arrays work in C#?

Posted by Slateboard on Stack Overflow See other posts from Stack Overflow or by Slateboard
Published on 2010-05-21T02:59:19Z Indexed on 2010/05/21 3:10 UTC
Read the original article Hit count: 209

Filed under:
|
|
|
|

I know that they are used to store data, but I have a difficult time understanding exactly how to use them in a program.

In addition, I found this site with a tetris clone tutorial (the actual tutorial is missing). It uses arrays, but I can't really make sense of how it works.

Here's an example of the code -

public int[, ,] TShape = new int[4, 4, 2] 
            {
            {{1, 0}, {0, 1}, {1, 1}, {2, 1}}, 
            {{1, 0}, {0, 1}, {1, 1}, {1, 2}}, 
            {{0, 0}, {1, 0}, {2, 0}, {1, 1}}, 
            {{0, 0}, {0, 1}, {1, 1}, {0, 2}}};

Could it be that I'm looking too hard into this, or perhaps there's something I'm not grasping about it?

© Stack Overflow or respective owner

Related posts about c#

Related posts about beginner