int[] n1 = {1,2,3}; string[,] n2 = { {"a","b"},{"c"} }; int[][] n3 = { new int[] {1,2,3}, new int[] {2,2,2} };
Reference