string separator = ", "; string[] mag = new string[] { "hello", "world" }; textBoxmag.Text = string.Join(separator, mag); // textBoxmag.Text == "hello, world";