c# string array to string

C#
string[] test = new string[2];

test[0] = "Hello ";
test[1] = "World!";

string.Join("", test);
Source

Also in C#: