I want to generate an XML Schema based upon a class, just as you can do with the Xsd.exe tool.
E.g. xsd.exe /type: typename /outputdir:c:\ assmeblyname.
Is there a way to do this by using classes in the .NET Framework instead of using the standalone tool?
I'm sure I've seen information about task references or similar - i.e. something programmatic - that can be used in place of some of these standalone utilities, or that some standalone utilities get their features through the FCL or a Microsoft API.
GenerateXsd()method). But you can with a decent amount of elbow grease recreate it with a number of classes from System.Reflection and System.Xml. – Jesse C. Slicer Nov 10 '10 at 23:22