How do I concatenate two arrays in C#? September 26, 2022 by Tarik var z = new int[x.Length + y.Length]; x.CopyTo(z, 0); y.CopyTo(z, x.Length);