I am new to XML coding. I have an XML file with which I generated the Schema file using XSD tool, then generated the class file using Xsd2Code tool.
Now I have a file called Timesheet.Designer.cs with all the class information and Serialization methods. Can I use the same file in the project or keep it as a base class and generate a separate file with Timesheet.cs for accessing this classes and modifications? Can anyone point to me a good tutorial or example which shows how can I use this in my application to Read and write to the XML file?
I have many complexType elements that are in the XML file. So the tool generated different classes for all these ComplexTypes as well.
If someone already has some code please post it here.