int [] array = {1,2,3,4,5}; string ids = String.Join(",", array.Select(p=>p.ToString()).ToArray()); //output = "1,2,3,4,5";.
確定! 回上一頁