Check out example codes for "C# array to string". It will help you in understanding the concepts better.
Code Example 1
string.Join(",", Client);
Code Example 2
string[] test = new string[2];
test[0] = "Hello ";
test[1] = "World!";
string.Join("", test);
Learn ReactJs, React Native from akashmittal.com