Public · Protected · Private
c# array declaration
Type: Public  |  Created: 2012-06-12  |  Frozen: Yes
« Previous Public Blog Next Public Blog »
Comments
  • 1D int[] myInts = new int[3]; 2D int[,] myMatrix; myMatrix = new int[6, 6]; 3D int[, ,] myCube; myCube = new int[6, 6, 6]; 4D int[, ,,] mySpace; mySpace = new int[6, 6, 6,6];
    2012-06-12 10:55
This blog is frozen. No new comments or edits allowed.