String Join Method in c#
Ask by Anonymous User
Updated 07 Dec 2015
The string.Join method combines many strings into one. It receives two arguments: an array or IEnumerable and a separator string. It places the separator between every element of the collection in the returned string.