rerun
rerun

Reputation: 25495

Generate an entire object Graph Interface

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: 300

Answers (1)

Oded
Oded

Reputation: 498904

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

Related Questions