timmay3141
Programmer
I created an XSD schema for a data object, and I ran the Visual Studio xsd tool to generate classes based on that schema. All of that looks fine, but now I want to read the XML file which conforms to that schema and return an object of the corresponding class. I've done a lot of searching online but I haven't found anything that describes how to do this easily. I've done this kind of thing in Java before and it was easy, but never in C#, and I'd imagine that people need to do this often enough that this functionality exists. Can someone tell me what I need to do? Thanks.