I've used XSD2Code to create a set of C# classes representing an XML document I'm currently retrieving from a web service call.
The returned object of the web service call is of type XMLNode.
I want to create an object from the generated classes and then populate it from the XMLNode.
The outter most class that seems to be have been generated is NewDataSet.
I'm a little stuck as to how to create/populate that object. Do I need to use Deserialization?