Xsd2Code – better than XSD
I’ve been working on a few ASP.Net projects and one of the key aspects of this project is creating some usable XSD schemas that are then translated into objects. At first, I started using the regular xsd.exe that creates a class (in either VB or C#) from a schema with the simple statement. xsd “myfile.xsd” /l:CS /o:”C:MyOutput” /c But I always wanted to have this directly within Visual Studio. I’m sure there’s another way (so please let me know) but then I foundXsd2Code .net class generator3.0. It does the same thing that XSD does but also lets you create add …