I'd like to know if there is a simple way to union two 2-Darrays.
Here is an example
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 }};