Answers for "print all string in textbox in array c#"

C#
0

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";
Posted by: Guest on October-19-2021

C# Answers by Framework

Browse Popular Code Answers by Language