Alternative of php's explode/implode-functions in c#
c#, explode, implode, php
Solution
String.Split() will explode, and String.Join() will implode.
Problem
are there a similar functions to explode/implode in the .net-framework? or do i have to code it by myself?