Check out example codes for "c# list join". It will help you in understanding the concepts better.
Code Example 1
String.Join(" ", elements)
Code Example 2
var combined = String.Join(",", new String[]{"a","b"});
// a,b
Code Example 3
List<string> names = new List<string>() { "John", "Anna", "Monica" };
var result = String.Join(", ", names.ToArray());
Learn ReactJs, React Native from akashmittal.com