string str = "张三,李四,王五,赵六,钱七"; string[] sArray = str.Split(','); foreach (string i in sArray) { 姓名.Items.Add(i); }