Too many characters in character literal
You used apostrophe = character and that can be only one char.
You can also pass a string array to Split function, and in a string you can use more then one char:
var sep = new string[] { ", " };
string[] subs = s.Split(sep, StringSplitOptions.None);