string[] a = new string[1,2,3];

string[] b = new string[4,5,6];


string[,] c = new string[2,3]{a,b};


배열안에 배열 넣는거..저렇게 하는거 아닌가요 ㅜ?