Check out example codes for "c# list to string comma separated". It will help you in understanding the concepts better.
Code Example 1
IList<string> strings = new List<string>{"1","2","testing"};
string joined = string.Join(",", strings);
Learn ReactJs, React Native from akashmittal.com