我正在尝试使用LINQ将XML文件保存到磁盘。我有一类业务对象,包括我想要转换为XML的字符串集合(List)。是否有一个简单的单行程序将此列表转换为XML元素列表?
例如,我的列表可能是:
List<string> collection = new List<string>() {"1", "2", "3"}
输出应为:
<Collection>
<Element>1</Element>
<Element>2</Element>
<Element>3</Element>
</Collection>
目前,我正在使用这种语法:
XElement Configuration =
new XElement("Configuration",
new XElement("Collection", collection.ToArray()
),
);
但是,这会将集合连接成一个字符串元素。
答案 0 :(得分:11)
XElement Configuration = new XElement("Collection",
collection.Select(c=>new XElement("Element", c)));