📜  复制二维数组 C# 代码示例

📅  最后修改于: 2022-03-11 14:49:12.479000             🧑  作者: Mango

代码示例1
public char[,] arrayCopy(char[,] input)
    {
        char[,] result = new char[input.GetLength(0), input.GetLength(1)]; //Create a result array that is the same length as the input array
        for (int x = 0; x < input.GetLength(0); ++x) //Iterate through the horizontal rows of the two dimensional array
        {
            for (int y = 0; y < input.GetLength(1); ++y) //Iterate throught the vertical rows, to add more dimensions add another for loop for z
            {
                result[x, y] = input[x, y]; //Change result x,y to input x,y
            }
        }
        return result;
    }