I have string variable like xml structure:
string str = "<people><person><FirstName>Daniel</FirstName><LastName>Wylie</LastName></person>";
It has 1 node only. I need to convert it to my new model. I converted it to xml firstly like this:
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml(xmlquery);
Now I need to move FirstName
and LastName
values from xml to following model:
public class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
}
How can I do this?
Use XmlSerializer
But because your xml contain tag. Then create a class
People
for deserializationThen try: