I am trying to setup a 2d array in C# to act as a maze to move a character around, I am having a few issues initialising the array, I am trying to do the below
but t
You need to declare maze
numbers = new int[X,Y]; where X and Y are how big it is