c# join string array

C#
var combined = String.Join(",", new String[]{"a","b"});
// a,b
Source

Also in C#: