Multi-dimensional array declaration

JavaScript:

var myArray = new int[8,8];    // 8x8 2d int array

C#:

int[,] myArray = new int[8,8];     // 8x8 2d int array
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.221.249.198