C# List<string> to string with delimiter

Viewed 819156

Is there a function in C# to quickly convert some collection to string and separate values with delimiter?

For example:

List<string> names --> string names_together = "John, Anna, Monica"

2 Answers
Related