displaying array to textbox c# code example
Example: display array elemetns to text box c#
string separator = ", ";
string[] mag = new string[] { "hello", "world" };
textBoxmag.Text = string.Join(separator, mag);
// textBoxmag.Text == "hello, world";