list of strings to string c# code example
Example 1: convert list of strings to string
string Something = string.Join(",", MyList);
Example 2: how to convert list of string to single string in c#
string Something = string.Join(",", MyList);
List<string> names = new List<string>() { "John", "Anna", "Monica" };
var result = String.Join(", ", names.ToArray());