Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# list to string comma separated

IList<string> strings = new List<string>{"1","2","testing"};
string joined = string.Join(",", strings);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #list #string #comma #separated
ADD COMMENT
Topic
Name
5+9 =