0 Members and 2 Guests are viewing this topic.
string ex = "test(#)one(#)two";string[] hold = ex.Split(new string[] { "(#)" }, StringSplitOptions.None);MessageBox.Show(hold[1]);