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.
|
|
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.
|
||
|
|
|
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
This will create a (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:
This will create a Marc |
||
|