Check out example codes for "c# convert list to string". It will help you in understanding the concepts better.
Code Example 1
string combindedString = string.Join( ",", myList.ToArray() );
Code Example 2
string.Join(", ", stringCollection); // "Value1, Value2, Value3
Learn ReactJs, React Native from akashmittal.com