In C# 3.0 you can use LINQ's Concat method to accomplish this easily: int[] front = { 1, 2, 3, 4 }; int[] back = { 5, 6, 7, ...
確定! 回上一頁