string tags = \"9,3,12,43,2\" List TagIds = tags.Split(\',\');
This doesn\'t work cause the split method returns a string[]
Without LINQ Query , you can choose this method ,
string tags = "9,3,12,43,2"; List numbers = nos.Split(',').ToList();
and then you can convert this List into integer type...