📅  最后修改于: 2022-03-11 14:48:47.494000             🧑  作者: Mango
string separator = ", ";
string[] mag = new string[] { "hello", "world" };
textBoxmag.Text = string.Join(separator, mag);
// textBoxmag.Text == "hello, world";