我的xml包含:
<day p="d">
<day p="n">
我需要将哪些属性添加到Day类才能使用XmlSerializer反序列化xml?
答案 0 :(得分:1)
以下装饰 -
[XmlType(TypeName="day")]
public class Day
{
[XmlAttribute("p")]
public string P { get; set; }
}
[XmlRoot("someObject")]
public class SomeObject
{
[XmlArray("days")]
public List<Day> Days { get; set; }
}
将序列化为:
<someObject xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<days>
<day p="n" />
<day p="p" />
</days>
</someObject>
希望能让你到达某个地方。
千电子伏
答案 1 :(得分:0)
[XmlElement("day")]
public class Day
{
[XmlAttribute("p")]
public string P {get;set;}
}