如何转换此列表:
List<int> Branches = new List<int>(); Branches.Add(1); Branches.Add(2); Branches.Add(3);
进入这个XML:
<Branches> <branch id="1" /> <branch id="2" /> <branch id="3" /> </Branches>
解决方法
你可以尝试使用LINQ:
List<int> Branches = new List<int>(); Branches.Add(1); Branches.Add(2); Branches.Add(3); XElement xmlElements = new XElement("Branches",Branches.Select(i => new XElement("branch",i))); System.Console.Write(xmlElements); System.Console.Read();
输出:
<Branches> <branch>1</branch> <branch>2</branch> <branch>3</branch> </Branches>
忘了提一下:你需要包括使用System.Xml.Linq;命名空间.
编辑:
XElement xmlElements = new XElement(“Branches”,Branches.Select(i => new XElement(“branch”,new XAttribute(“id”,i))));
输出:
<Branches> <branch id="1" /> <branch id="2" /> <branch id="3" /> </Branches>