Answers for "c# combine two arrays into 2d array"

C#
1

copy 2d arrays C#

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;
    }
Posted by: Guest on October-06-2020
1

how to concatenate two arrays in c#

var z = new int[x.Length + y.Length];
x.CopyTo(z, 0);
y.CopyTo(z, x.Length);
Posted by: Guest on July-09-2020

C# Answers by Framework

Browse Popular Code Answers by Language