gpt4 book ai didi

c# - 将 XML 转换为通用列表

转载 作者:可可西里 更新时间:2023-11-01 08:03:30 27 4
gpt4 key购买 nike

我正在尝试将 XML 转换为列表

<School>
<Student>
<Id>2</Id>
<Name>dummy</Name>
<Section>12</Section>
</Student>
<Student>
<Id>3</Id>
<Name>dummy</Name>
<Section>11</Section>
</Student>
</School>

我使用 LINQ 尝试了一些事情,但不太清楚如何继续。

dox.Descendants("Student").Select(d=>d.Value).ToList();

我得到计数​​ 2,但值类似于 2dummy12 3dummy11

是否可以将上述 XML 转换为具有 Id、Name 和 Section 属性的 Student 类型的通用列表?

实现此功能的最佳方式是什么?

最佳答案

我看到你已经接受了一个答案。但我只想展示另一种我喜欢的方式。首先你需要如下类:

public class Student
{
[XmlElement("Id")]
public int StudentID { get; set; }

[XmlElement("Name")]
public string StudentName { get; set; }

[XmlElement("Section")]
public int Section { get; set; }
}

[XmlRoot("School")]
public class School
{
[XmlElement("Student", typeof(Student))]
public List<Student> StudentList { get; set; }
}

然后你可以反序列化这个xml:

string path = //path to xml file

using (StreamReader reader = new StreamReader(path))
{
XmlSerializer serializer = new XmlSerializer(typeof(School));
School school = (School)serializer.Deserialize(reader);
}

希望对您有所帮助。

关于c# - 将 XML 转换为通用列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16297583/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com