up vote 2 down vote favorite
share [g+] share [fb]

I have an xml file that I would like to generate a c# class for. Is there any quick and easy way to do this? I don't have a schema to go with my xml file, it's just raw xml. Any ideas?

Thanks.

link|improve this question

You can generate a schema using Microsoft's XSD Schema creator. – George Stocker Oct 13 '09 at 18:11
feedback

1 Answer

up vote 5 down vote accepted

All code generation tools that I know will require a schema - but you can easily create one from your XML data file.

You can use xsd.exe to infer a XML schema from the XML data file:

xsd.exe yourdata.xml

This will create a yourdata.xsd. Of course, xsd.exe can only be guessing - pretty good sometimes, not so good other times. You might want to check (and possibly modify) the schema before proceeding.

(You can do the same in Visual Studio: load the XML file, and from the XML menu, choose "Create schema").

From that schema, you can then create serializable classes:

xsd.exe yourdata.xsd /classes

This will create a yourdata.cs file that contains a C# class that can be serialized into and deserialized from your XML data files.

Marc

link|improve this answer
Thanks. Nice and simple. – TehOne Oct 13 '09 at 18:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.