gpt4 book ai didi

c# - .NET XML 序列化数组/列表对象别名

转载 作者:太空狗 更新时间:2023-10-30 01:27:04 25 4
gpt4 key购买 nike

我需要像这样序列化一个对象:

public class Book
{
public string Title { get; set; }
public string[] Authors { get; set; }
}

这会生成如下内容:

<?xml version="1.0" encoding="utf-8"?>
<Book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Title>Good Book</Title>
<Authors>
<string>Author1</string>
<string>Author2</string>
</Authors>
</Book>

我正在寻找类似的东西:

<?xml version="1.0" encoding="utf-8"?>
<Book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Title>Good Book</Title>
<Authors>
<AuthorName>Author1</AuthorName>
<AuthorName>Author2</AuthorName>
</Authors>
</Book>

AuthorName 只是一个字符串。如何在不创建字符串包装器的情况下执行此操作?

谢谢

最佳答案

使用 XmlArrayItem属性:

public class Book
{
public string Title { get; set; }

[XmlArrayItem("AuthorName")]
public string[] Authors { get; set; }
}

关于c# - .NET XML 序列化数组/列表对象别名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3611845/

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