I have a myXML.xml file. I used xsd.exe to generate and myXMLClass.cs class files which contains many partial classes.
Now, I want to use this myXMLClass.cs class and retrieve all the nodes/attributes/values/data using my original myXML.XML file. But, how can I do this because of myXMLClass.cs has so many partial classes?
eg. I want to do deserializing using TypeOf myXMLClass like like this. But, myXMLClass contains many partial classes.
XmlSerializer serializer = new XmlSerializer(typeof(myXMLClass??));
Thank you
Update:
Also, I am having problem with obtaining the "code" and "description" of this tag that has this kind of setup.
<HitCode code="4" description="CONSUMER DECLARATION" />
Again, my goal is to retrieve "code" and "description" of this tage.