标签: c# arrays
我想知道是否有一种简单的方法来结合两个2-Darrays。
这是一个例子
int[,] array1 = new int[,] { { 1, 2 }, { 3, 4 }}; int[,] array2 = new int[,] { {5, 6 }, { 7, 8 }}; int[,] Union = new int[,] { { 1, 2 }, { 3, 4 },{5, 6 }, { 7, 8 }};