Convert a string array to a concatenated string in C# July 29, 2023 by Tarik A simple one… string[] theArray = new string[]{"Apples", "Bananas", "Cherries"}; string s = string.Join(",",theArray);