您需要将文档序列化为测试。该文件已准备好,从中生成类。为什么工作室将每个标签创建为一个类以及如何正确序列化它们?虽然运行时出错。
<?xml version="1.0" encoding="utf-8" ?>
<AapSelector xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Sections>
<Section>
<Type>FAP</Type>
</Section>
</Sections>
</AapSelector>
班级:
[Serializable]
public partial class AapSelector
{
public AapSelectorSections Sections { get; set; }
}
[Serializable]
public partial class AapSelectorSections
{
public AapSelectorSectionsSection Section { get; set; }
}
[Serializable]
public partial class AapSelectorSectionsSection
{
public string Type { get; set; }
}
class Program
{
static void Main(string[] args)
{
var A = new AapSelector();
var serializer = new XmlSerializer(A.GetType());
serializer.Serialize(Console.Out, serializer);
Console.WriteLine();
Console.ReadLine();
}
}
正如评论中已经回答的那样,错误修复如下:
而且,您可以将生成的 XML 输出到如下文件:
所以,我会试着回答我自己的问题。因为我用铃鼓跳舞,所以我解决了这个问题。包括感谢这里收到的答案!标签名称已更改为更适合我的情况。模型
主要的:
结论: