Answers for "display array elemetns to text box c#"

C#
0

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";
Posted by: Guest on November-13-2020

Code answers related to "display array elemetns to text box c#"

C# Answers by Framework

Browse Popular Code Answers by Language