23
Come concatenare due array in C #?
int[] x = new int [] { 1, 2, 3}; int[] y = new int [] { 4, 5 }; int[] z = // your answer here... Debug.Assert(z.SequenceEqual(new int[] { 1, 2, 3, 4, 5 })); In questo momento lo uso int[] z = x.Concat(y).ToArray(); Esiste un metodo più semplice …