字串转List(用Int32.Parse作为委托传入) List x = strList.Split(',').Select(Int32.Parse).ToList();
List转字串 string y = String.Join(",",x.ToArray())