我需要上面的功能,因为我只能将StringCollection存储到Settings,而不是List of strings。
如何将List转换为StringCollection?
答案 0 :(得分:30)
怎么样:
StringCollection collection = new StringCollection();
collection.AddRange(list.ToArray());
或者,避免使用中间数组(但可能涉及更多的重新分配):
StringCollection collection = new StringCollection();
foreach (string element in list)
{
collection.Add(element);
}
使用LINQ转换回来很简单:
List<string> list = collection.Cast<string>().ToList();
答案 1 :(得分:1)
使用List.ToArray()
将List转换为可用于在StringCollection
中添加值的数组。
StringCollection sc = new StringCollection();
sc.AddRange(mylist.ToArray());
//use sc here.
阅读this
答案 2 :(得分:0)
以下是将IEnumerable<string>
转换为StringCollection
的扩展方法。它的工作方式与其他答案的工作方式相同,只需将其包装起来。
public static class IEnumerableStringExtensions
{
public static StringCollection ToStringCollection(this IEnumerable<string> strings)
{
var stringCollection = new StringCollection();
foreach (string s in strings)
stringCollection.Add(s);
return stringCollection;
}
}
答案 3 :(得分:0)
我更愿意:
Collection<string> collection = new Collection<string>(theList);