PHP implode() Function with C#

November 23rd, 2008 | Posted in ASP.NET
0

The following snippet will join values in an array with a specified separator.

string[] items = new string[] { "one", "two", "three" };
string.Join(", ", items);

Related posts

Leave a Reply