string [] ss =s.Split(new Char('+'));
-----------------------
msdn上的例子:
public class SplitTest {
    public static void Main() {        string words = "this is a list of words, with: a bit of punctuation.";        string [] split = words.Split(new Char [] {' ', ',', '.', ':'});        foreach (string s in split) {            if (s.Trim() != "")
                Console.WriteLine(s);
        }
    }
}