Possible Duplicate:
how can I convert string to an array with separator?
Suppose:
string = @"Abc, Def, Ghi, Lmno";
I want those words, which are separated by comma, in an Array like this:
element 0 = Abc,
element 1 = Def,
element 2 = Ghi,
element 3 = Lmno.