.Net has a tool called the XML Schema Definition Tool (XSD.EXE) which can turn XSD schemas into classes. Also, it will try to make it so those classes will conform to the schema when serialized as XML.
xsd.exe pathToXSD.xsd /classes /language:VB /outputdir:C:output
You can then serialize and deserialize the object into/from XML.