If you need delimiters between each string (such as comma separating a list), there is string.Join.
If you want to run a function on each string before joining them, you can do: string.Join(separator, yourArrayOrCollection.Select(x => Operation(x));
If you want any kind of fancier operation, a StringBuilder and a loop might be the best approach.

Find content
Male