Creating Strongly typed datasets w/ xsd.exe tool

nbartomeli

Newcomer
Joined
Jul 11, 2003
Messages
2
I have the following from MSDN documentation but it is given for C#
---------------------------------------------
xsd.exe /d /l:CS WSDSchemaFileName.cs /n:XSDSchema.namespace

csc.exe /t:Library XSDSchemaFileName.cs /r:system.dll /r:system.data.dll
----------------------------------------------

What do I need to change to make this work in VB? Or is there an easier way?

Thank you in advance
 
The xsd.exe command should be the same except for the CS references.

For the csc command, just change csc.exe to vbc.exe. And the cs file should point to a vb file, of course.
 
Back
Top