Possible Duplicate:
Why isn’t there a string.Split(string) overload?
There are several overloads but not one that allows sending a string. Which is the very often used by developers, at least by my team.
string[] x = "abc|||dev".Split("|||");
Why?..
Please, I am not asking How to do split passing string.