如何 linq 拆分字符串(仅当分隔符存在时)并创建数组
How to linq to split string (only if delimer exists) and create array
public class itemObject { public string items; }
values - item = "name1,name2" or items = "item3"
需要 linq 以 ',' 分割,否则为一个字符串数组。
这不需要 linq,它是 String.Split
的默认行为
var array = items.Split(',');
public class itemObject { public string items; }
values - item = "name1,name2" or items = "item3"
需要 linq 以 ',' 分割,否则为一个字符串数组。
这不需要 linq,它是 String.Split
var array = items.Split(',');