c# – 如何将列表序列化为XML?

前端之家收集整理的这篇文章主要介绍了c# – 如何将列表序列化为XML?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何转换此列表:
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>
原文链接:https://www.f2er.com/csharp/93800.html

猜你在找的C#相关文章