在c#中联合两个2-D阵列(不是两个1-D阵列)

时间:2015-07-25 21:36:45

标签: 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 }};

0 个答案:

没有答案