Possible Duplicate:
Array.Join in .Net?
From a List<String>
that contains "Hello"
and "World"
, I would like to obtain "Hello, World"
.
Is there a library function that would accept my list and and the string ", "
and return "Hello, World"
?