Reputation: 25505
I have a large nested xsd generated object model which I would like to create interfaces for so as to create proxy objects. Is there a tool that will generate all of the interfaces I need or will I just need to generate them manually one at a time.
Upvotes: 2
Views: 301
Reputation: 499302
You can use xsd.exe
to generate C# classes for you - you can then use the extract interface refactoring to generate interfaces from these.
Upvotes: 1