gpt4 book ai didi

c# - 如何使用 Linq 序列化为 xml

转载 作者:行者123 更新时间:2023-11-30 18:59:35 24 4
gpt4 key购买 nike

如何使用 Linq 将 College 实例序列化为 XML?

class College
{
public string Name { get; set; }
public string Address { get; set; }
public List<Person> Persons { get; set; }
}


class Person
{
public string Gender { get; set; }
public string City { get; set; }
}

最佳答案

您不能使用 LINQ 进行序列化。您可以使用 XmlSerializer .

  XmlSerializer serializer = new XmlSerializer(typeof(College));

// Create a FileStream to write with.
Stream writer = new FileStream(filename, FileMode.Create);
// Serialize the object, and close the TextWriter
serializer.Serialize(writer, i);
writer.Close();

关于c# - 如何使用 Linq 序列化为 xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9502194/

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