how to tuen list to string code example
Example 1: convert list of strings to string
string Something = string.Join(",", MyList);
Example 2: how to convert a list to a string in python
array = []
STR = ''
for i in array:
STR = STR+i
string Something = string.Join(",", MyList);
array = []
STR = ''
for i in array:
STR = STR+i