Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

print all string in textbox in array 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: #print #string #textbox #array
ADD COMMENT
Topic
Name
8+6 =