I have a series of fairly complex xsd schema files and I would like to create c# classes out of them. I use xsd.exe in Visual Studio 8 and classes are generated fine. However, I would like to bypass inheritance, meaning no classes should inherit from a parent class.
I need this because I create a Web Service with these classes as parameters to my web service methods. The wsdl for the web service generates tags for these child classes. As far as I understand SAP does not accept extension tags when creating a web service client. Therefore I need a work around for this.
Any help is greatly appreciated.