are there a similar functions to explode/implode in the .net-framework?

or do i have to code it by myself?

link|improve this question
feedback

2 Answers

up vote 7 down vote accepted

String.Split() will explode, and String.Join() will implode.

link|improve this answer
feedback

String.Join and String.Split

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.