I don’t understand why the framework has not done an overload of the method .Split(Char []) like as this .Split(string)
This is a tip to split a string bystring
string[] mySplit= mystr.Split(new string[] { "||" }, StringSplitOptions.None);
For example, if do you want split a string like as “val1||val2″ you must split by this string “||” :
mySplit[0] [...]
















