Good Tools to Generate C# Class from XSD

  • Thread starter Thread starter John Lee
  • Start date Start date
J

John Lee

Hi,

Would you please suggest me a good tool that I could use to create C# class
from xsd and the generated c# class should be able to serialize and
deserialize xml instance that compliant with the xsd?

Thanks very much!
John
 
XSD.EXE, which is part of VS2003 suite.
It generates just the classes of a Dataset with serialization capability.
Fabio
 
Thanks for Fabio's quick response.

Hi John,

As Fabio said, xsd.exe is such a tool can generate classes from xsd. It not
only generated classes as a DataSet, but also generate common classes.
Please check the following link for more information.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cptools/htm
l/cpconxmlschemadefinitiontoolxsdexe.asp

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."
 
Back
Top