No Opinions...just code

Create A Schema / Class From XML Doc

VS has a tool that will create an XSD from an XML doc. short way...open XML document from within VS - XML menu will appear. XML->Create Schema.

To create class..Visual Studio command prompt: xsd.exe /c /l:vb filepath to schema

the /c = class generation
the /l: = lang - CS (c#) VB (vb) etc....
/? = help

0 comments: