I would like to convert a string array to a single string.
string[] test = new string[2]; test[0] = \"Hello \"; test[1] = \"World!\";
I wou
Like this:
string str= test[0]+test[1];
You can also use a loop:
for(int i=0; i<2; i++) str += test[i];