c# – 如何将列表序列化为XML?
发布时间:2020-12-15 03:45:32 所属栏目:百科 来源:网络整理
导读:如何转换此列表: Listint Branches = new Listint();Branches.Add(1);Branches.Add(2);Branches.Add(3); 进入这个XML: Branches branch id="1" / branch id="2" / branch id="3" //Branches 解决方法 你可以尝试使用LINQ: Listint Branches = new Listint
如何转换此列表:
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> (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |