Which of the following statements correctly declares a 2 dimensional array in c#?
int[,] myarray;
int[][] myarray
int[2] myarray
none of above