Hi, How to merge array in C#: int[] x = {1,2,3}; int[] y = {4,5}; int[] z = //merge to array: x + y = {1,2,3,4,5} I can loop and write...
確定! 回上一頁