Is there a function in C# to quickly convert some collection to string and separate values with delimiter? C#中是否有一個函數能夠將某些集合快速轉換爲字符串並使用定界符分隔值? 函數
For example: 例如: ui
List<string> names
--> string names_together = "John, Anna, Monica"
List<string> names
-> string names_together = "John, Anna, Monica"
spa