3つの1次元配列を1つにまとめたいのですが、どうすればよいのでしょうか?
int[] aaa = new int{0,1,2}; string[] bbb = new string{"a","b","c"}; string[] ccc = new string{"d","e","f"}; エラーになるがイメージ string[] xxx = new string[3]{aaa,bbb,ccc}; string[,] zzz = new string[3,3]{{aaa},{bbb},{ccc}};
宜しくお願い致します。
回答2件
あなたの回答
tips
プレビュー