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!"
string[] test = new string[2]; test[0] = "Hello "; test[1] = "World!"; string.Join("", test);
1.4m articles
1.4m replys
5 comments
57.0k users