Array in C#
In this question I answered int[2] myArray; but im wrongthe answer is int[,] myArray;The question is Which of these statements correctly declares a two-dimensional array in c#?choices: int[][] myArray; int[,] myArray; int[2] myArray; System.Array[2] myArray;why int[,] myArray is the answer?
Asked on 21 February 2014
You are not loggedin, please
login or signup to add comments:
Answers: