Я хочу десериализовать этот Xml:
<Content id="1">
<Element key="Description">Bla bla bla</Element>
<Element key="Title">The title</Element>
</Content>
в следующие классы:
public class Content
{
[XmlAttribute(AttributeName = "id")]
public string Id
{
get { return _id; }
set { _id = value; }
}
[XmlAttribute(AttributeName = "description")]
public string Description
{
get;
set;
}
[XmlAttribute(XmlElement = "title")]
public string Title
{
get;
set;
}
}
Моя проблема в том, что я не знаю, как я могу поместить текст правильногоатрибут в свойстве класса.
Спасибо