0

2假设我有这个数组:

<something>
    <items1 note="some text">
        <item1></item1>
        <item1></item1>
        <item1></item1>
    </items1>
    <items2>
        <item2></item2>
        <item2></item2>
        <item2></item2>
    </items2>
</something>

我有一个模型:

public class Something
{
    public string Item1Note { get; set; }
    public List<Item1> Items1 { get; set; }
    public List<Item2> Items2 { get; set; }
}

那么,是否可以将 XML 反序列化到模型中,以便 Items1 节点的属性注释在属性 Item1Note 中。提前谢谢。

编辑:我知道注释是 Items1 的属性,但我没有这样的课程。

4

2 回答 2

2

该xml的类将是

public class Items1
{
    [XmlAttribute]
    public string note { get; set; }
    [XmlElement]
    public List<item1> item1 { get; set; }
}

public class Item2
{
    [XmlElement]
    public List<item2> item2 { get; set; }
}

[XmlRootAttribute("Something", Namespace="", IsNullable=false)]
public class Something
{
   [XmlElement]
    public Items1 items1 { get; set; }
    [XmlElement]
    public Item2 item2 { get; set; }
}


Something objSomething = this.Something();

ObjectXMLSerializer<Something>.Save(objSomething, FILE_NAME);

Loading the xml

objSomething = ObjectXMLSerializer<Something>.Load(FILE_NAME);
于 2013-05-30T08:54:58.523 回答
0

您可以创建自己的解析器,然后将其保存为对象。 http://msdn.microsoft.com/en-us/library/cc189056%28v=vs.95%29.aspx

于 2013-05-30T08:44:28.313 回答