我想要做的是使用 linq 将字符串转换为字符串列表。我尝试以下代码行:
value = "one,two,three,four";
List<string> arr = value.Split(',').Select(s => s.ToList());
但我收到错误:
错误 1 无法将类型“System.Collections.Generic.IEnumerable>”隐式转换为“System.Collections.Generic.List”。存在显式转换(您是否缺少演员表?)
如果有人可以提供一些帮助,那就太棒了。