已知数组如下: int[] array = { 1, 5, 9, 3, 7, 2, 8 ,6, 4}; (1).引用复制,易引起错误,不推荐 int[] copy = array; (2).遍历拷贝 int[] copy = new int[array .Length]; for (int i = 0; i < array.length; i++){ copy[i] = array[i];} (3).使用CopyTo方法 int[] copy = new int[array .Length];…