下面所列选项中,能够正确定义2行3列二维整型数组a的是( )。
A.int[][] a=new int[2][3];
B.int[,] a=new int[2,3];
C.int[2][3];
D.int[,] a=int[2,3];
正确答案是B