display array elemetns to text box csharp

Code Example - display array elemetns to text box csharp

                
                        string separator = ", ";
string[] mag = new string[] { "hello", "world" };

textBoxmag.Text = string.Join(separator, mag);
// textBoxmag.Text == "hello, world";