Read typed objects from XML using known XSD
You need to do two steps: 1) Take your XML schema file and run it through the xsd.exe utility (which comes with the Windows SDK – it’s in C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin\ or some similar path. This can turn the XSD file into a C# class: xsd /c yourfile.xsd This should give you a file yourfile.cs … Read more