I want to deserialize this Xml :
<Content id="1">
<Element key="Description">Bla bla bla</Element>
<Element key="Title">The title</Element>
</Content>
into this classes :
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;
}
}
My problem is that i don't know how i can put the text of the right attribute in the class property.
Thanks