Hi SpaceLama,
First, you should use C# to read your XML file, then you can get the XML nodes or properties. You can put these nodes and properties in to your custom class. After this, you can use object module
to do it.
<Names>
<Name>
<FirstName>Jack</FirstName>
<LastName>Green</LastName>
</Name>
</Names>
XmlDocument xml = new XmlDocument();
xml.LoadXml(myXmlString); // suppose that myXmlString contains "<Names>...</Names>"
XmlNodeList xnList = xml.SelectNodes("/Names/Name");
foreach (XmlNode xn in xnList)
{
string firstName = xn["FirstName"].InnerText;
string lastName = xn["LastName"].InnerText;
// you can create a custom class withe these properties
}
Thanks,
Jack