I would like to convert a string array to a single string.

string[] test = new string[2];
test[0] = "Hello ";
test[1] = "World!";

I would like to have something like “Hello World!”

9 Answers
9

Leave a Reply

Your email address will not be published. Required fields are marked *