are there a similar functions to explode/implode in the .net-framework?
or do i have to code it by myself?
There are two methods that correspond to PHP's explode and implode methods.
The PHP explode's equivalent is String.Split. The PHP implode's equivalent is String.Join.