DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
String.Join() Method To Combine Strings In An Array Or List Into A Single String
// description of your code here
string[] stringarray= { "Dzone", "Snippet", "Links" , "Comments" };
Console.WriteLine(string.Join("-", stringarray));
Output - "Dzone-Snippet-Links-Comments"





