Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

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";
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #display #array #elemetns #text #box
ADD COMMENT
Topic
Name
7+6 =