c# - How to generate .NET 4.0 classes from xsd? -
what options generate .net 4.0 c# classes (entities) xsd file, using visual studio 2010?
simple enough; run (at vs command prompt)
xsd your.xsd /classes
(which create your.cs
). note, however, of intrinsic options here haven't changed since 2.0
for options, use xsd /?
or see msdn; example /enabledatabinding
can useful.
Comments
Post a Comment