Join()好用

例如  string[] tableName = new string[] { "1","2","3"};

textBox1.Text=string.Join(",",tableName);

输出:1,2,3

相关文章: